Skip to content

Commit ce503f7

Browse files
committed
feat: ci: modify workflow to build artifact separately
1 parent db48f96 commit ce503f7

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/build-release.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,9 @@ jobs:
3535
- name: Upload binaries as artifacts
3636
uses: actions/upload-artifact@v3
3737
with:
38-
name: binaries
38+
name: ${{ matrix.goos }}-${{ matrix.goarch }}/weave
3939
path: |
40-
build/darwin-amd64/weave
41-
build/darwin-arm64/weave
42-
build/linux-amd64/weave
43-
build/linux-arm64/weave
40+
build/${{ matrix.goos }}-${{ matrix.goarch }}/weave
4441
4542
upload-to-weave-binaries:
4643
name: Upload to weave-binaries release

0 commit comments

Comments
 (0)