Skip to content

Commit 48ed089

Browse files
committed
fix: action
1 parent ebf9c73 commit 48ed089

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build-release.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,11 @@ jobs:
2929
mkdir -p build
3030
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o build/weave-${{ matrix.goos }}-${{ matrix.goarch }}
3131
32-
- name: List files in build directory
33-
run: ls -l build/
32+
- name: Upload binaries
33+
uses: actions/upload-artifact@v3
34+
with:
35+
name: ${{ matrix.goos }}-${{ matrix.goarch }}-binary
36+
path: build/${{ matrix.goos }}-${{ matrix.goarch }}/weave
3437

3538
# - name: Upload binaries to GitHub release
3639
# uses: actions/upload-release-asset@v1

0 commit comments

Comments
 (0)