fix: go installation guide v2 reference #42
This file contains hidden or 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: generate packages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| generate-packages: | |
| name: build inside devcontainer | |
| defaults: | |
| run: | |
| shell: bash | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run protobuf compilation in devcontainer | |
| uses: devcontainers/ci@v0.3 | |
| with: | |
| push: never | |
| runCmd: make clean; make build | |
| - name: Commit generated code | |
| uses: EndBug/add-and-commit@v9 # You can change this to use a specific version. | |
| with: | |
| # Add all changes to packages | |
| add: "packages/*" | |
| author_name: Packagebuilder Bot | |
| default_author: github_actions | |
| # The message for the commit. | |
| # Default: 'Commit from GitHub Actions (name of the workflow)' | |
| message: "build: update packages (automated)" | |