Skip to content

Commit 694d40e

Browse files
authored
Update main.yml
1 parent eedefe9 commit 694d40e

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

.github/workflows/main.yml

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ jobs:
5858
with:
5959
name: artifacts-${{ matrix.goos }}-${{ matrix.goarch }}
6060
path: jbs-client-${{ matrix.goos }}-${{ matrix.goarch }}.zip
61-
download:
62-
needs: ["build-java", "build-go"]
63-
runs-on: ubuntu-latest
64-
steps:
65-
- name: download
66-
uses: actions/download-artifact@v4
67-
- name: tree
68-
run: |
69-
tree .
70-
mv artifacts-*/* artifacts
71-
tree artifacts
61+
# test-download:
62+
# needs: ["build-java", "build-go"]
63+
# runs-on: ubuntu-latest
64+
# steps:
65+
# - name: download
66+
# uses: actions/download-artifact@v4
67+
# - name: tree
68+
# run: |
69+
# tree .
70+
# mv artifacts-*/* artifacts
71+
# tree artifacts
7272

7373

7474
release:
@@ -78,6 +78,10 @@ jobs:
7878
steps:
7979
- name: Download Artifacts
8080
uses: actions/download-artifact@v4
81+
- name: tree
82+
run: |
83+
mv artifacts-*/* artifacts
84+
tree artifacts
8185
- name: Create Release
8286
id: create_release
8387
uses: actions/create-release@v1
@@ -91,6 +95,6 @@ jobs:
9195
- name: Upload Release Assets
9296
uses: softprops/action-gh-release@v1
9397
with:
94-
files: artifacts*/*
98+
files: artifacts/*
9599
env:
96100
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)