Skip to content

Commit db3b647

Browse files
committed
fix: released actions
1 parent 6691799 commit db3b647

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,17 @@ jobs:
6363
steps:
6464
- name: download
6565
uses: actions/download-artifact@v4
66+
with:
67+
path: artifacts
68+
merge-multiple: true
6669
- name: Upload Archives to Release
6770
env:
6871
UPLOAD_URL: ${{ github.event.release.upload_url }}
6972
API_HEADER: "Accept: application/vnd.github.v3+json"
7073
AUTH_HEADER: "Authorization: token ${{ secrets.GITHUB_TOKEN }}"
7174
run: |
7275
UPLOAD_URL=$(echo -n $UPLOAD_URL | sed s/\{.*//g)
73-
for FILE in artifact/*
76+
for FILE in artifacts/*
7477
do
7578
echo "Uploading ${FILE}";
7679
curl \
@@ -88,7 +91,7 @@ jobs:
8891
run: |
8992
HASH_TABLE="| SHA256 Hash | Filename |"
9093
HASH_TABLE="${HASH_TABLE}\n|-----|-----|\n"
91-
for FILE in artifact/*
94+
for FILE in artifacts/*
9295
do
9396
FILENAME=$(basename ${FILE})
9497
HASH=$(sha256sum ${FILE} | cut -d ' ' -f 1)

0 commit comments

Comments
 (0)