Skip to content

Commit

Permalink
ghactions: Don't upload artifacts multiple times
Browse files Browse the repository at this point in the history
With the addition of a matrix of go versions to test the build with, the
artifact upload will also be run multiple time. If they run
concurrently, this will cause unexpected upload failures.
Only publish the '1.21.x' artifact.
  • Loading branch information
cfergeau committed Jan 22, 2024
1 parent 012bc90 commit 5ec4f61
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
mv bin/gvproxy.exe bin/gvproxy-windowsgui.exe
- uses: actions/upload-artifact@v3
if: ${{ matrix.go-version == "1.21.x" }}
with:
name: gvisor-tap-vsock-binaries
path: bin/*
Expand Down

0 comments on commit 5ec4f61

Please sign in to comment.