Skip to content

Commit

Permalink
squash! refactor GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
MadnessASAP committed Dec 11, 2024
1 parent ddd4201 commit 46ff8e2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ jobs:
- name: Save Go env
id: go-env
run: go env >> $GITHUB_OUTPUT
run: |
echo GOPATH=$(go env GOPATH) >> $GITHUB_OUTPUT
echo GOBIN=$(go env GOPATH)/bin >> $GITHUB_OUTPUT
- name: Check compatible min Go version
run: |
Expand All @@ -97,7 +99,7 @@ jobs:
with:
name: ${{ matrix.go }}-incus-bin
path: |
${{ format('{0}/bin', steps.go-env.outputs.GOPATH) }}
${{ steps.go-env.outputs.GOBIN }}
- name: Upload artifact (src)
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 46ff8e2

Please sign in to comment.