We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebf9c73 commit 48ed089Copy full SHA for 48ed089
.github/workflows/build-release.yml
@@ -29,8 +29,11 @@ jobs:
29
mkdir -p build
30
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o build/weave-${{ matrix.goos }}-${{ matrix.goarch }}
31
32
- - name: List files in build directory
33
- run: ls -l build/
+ - name: Upload binaries
+ uses: actions/upload-artifact@v3
34
+ with:
35
+ name: ${{ matrix.goos }}-${{ matrix.goarch }}-binary
36
+ path: build/${{ matrix.goos }}-${{ matrix.goarch }}/weave
37
38
# - name: Upload binaries to GitHub release
39
# uses: actions/upload-release-asset@v1
0 commit comments