chore(deps): update module github.com/google/go-attestation to v0.5.1 [security] #134
Workflow file for this run
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: build | |
| on: | |
| push: | |
| branches: | |
| - harvester-dev | |
| tags: | |
| - v* | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build images | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| # Build binaries and SHA files | |
| - name: Run make ci | |
| run: make ci | |
| - name: Release | |
| if: startsWith(github.ref, 'refs/tags/') | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| gh release upload ${{ github.ref_name }} dist/artifacts/rancherd-amd64 | |
| gh release upload ${{ github.ref_name }} dist/artifacts/rancherd-arm64 | |
| gh release upload ${{ github.ref_name }} dist/artifacts/sha256sum-amd64.txt | |
| gh release upload ${{ github.ref_name }} dist/artifacts/sha256sum-arm64.txt |