Commit 6499b58 1 parent 48ed089 commit 6499b58 Copy full SHA for 6499b58
File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -26,15 +26,18 @@ jobs:
26
26
27
27
- name : Build binary
28
28
run : |
29
- mkdir -p build
30
- GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o build/weave-${{ matrix.goos }}-${{ matrix.goarch }}
29
+ mkdir -p build/${{ matrix.goos }}-${{ matrix.goarch }}
30
+ GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o build/${{ matrix.goos }}-${{ matrix.goarch }}/weave
31
+
32
+ - name : List files in build directory (optional for debugging)
33
+ run : ls -R build/
31
34
32
35
- name : Upload binaries
33
36
uses : actions/upload-artifact@v3
34
37
with :
35
38
name : ${{ matrix.goos }}-${{ matrix.goarch }}-binary
36
39
path : build/${{ matrix.goos }}-${{ matrix.goarch }}/weave
37
-
40
+
38
41
# - name: Upload binaries to GitHub release
39
42
# uses: actions/upload-release-asset@v1
40
43
# with:
You can’t perform that action at this time.
0 commit comments