l10n/weblate: update Spanish translation #147
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/vanilla-os/pico:main | |
permissions: | |
contents: write # to upload assets to releases | |
attestations: write # to upload assets attestation for build provenance | |
id-token: write # grant additional permission to attestation action to mint the OIDC token permission | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: Install build dependencies | |
run: | | |
apt-get update | |
apt-get install -y pkg-config build-essential | |
- name: Build | |
run: go build -o vso | |
- name: Check for missing strings | |
uses: vanilla-os/[email protected] | |
- name: Compress | |
run: tar -czvf vso.tar.gz vso | |
- name: Compress-manpage | |
run: tar -czvf vso-man.tar.gz man/vso.1 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: vso | |
path: vso.tar.gz | |
- uses: softprops/action-gh-release@v2 | |
if: github.repository == 'vanilla-os/vanilla-system-operator' && github.ref == 'refs/heads/main' | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
tag_name: "continuous" | |
prerelease: true | |
name: "Continuous Build" | |
files: | | |
vso.tar.gz | |
vso-man.tar.gz | |
- name: Attest continuous release files | |
if: github.repository == 'vanilla-os/vanilla-system-operator' && github.ref == 'refs/heads/main' | |
uses: actions/attest-build-provenance@v1 | |
with: | |
subject-path: | | |
vso.tar.gz | |
vso-man.tar.gz |