Skip to content

Commit

Permalink
ci: install golang in attribution upload action
Browse files Browse the repository at this point in the history
This action requires the krane-bundle crate to build, so needs golang.
  • Loading branch information
cbgbt committed Oct 10, 2024
1 parent e2b9fa7 commit 0f7c0cd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,9 @@ jobs:
${{ needs.create-release.outputs.has-releases == 'true'
&& github.repository == 'bottlerocket-os/twoliter'
}}
runs-on: ubuntu-latest
runs-on:
group: bottlerocket
labels: bottlerocket_ubuntu-latest_8-core
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REF_NAME: ${{ github.ref_name }}
Expand All @@ -166,6 +168,9 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-go@v5
with:
go-version: "^1.18"
- name: Upload attributions
run: |
make attributions
Expand Down

0 comments on commit 0f7c0cd

Please sign in to comment.