Skip to content

Commit 6b78742

Browse files
committed
fix artifact name
1 parent 8cce216 commit 6b78742

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-scuffle.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
- name: Upload artifact
7777
uses: actions/upload-artifact@v4
7878
with:
79-
name: ${{ env.NAME }}.tar.zst
79+
name: ${{ env.NAME }}
8080
path: artifacts-archive/${{ env.NAME }}.tar.zst
8181

8282
release:
@@ -95,7 +95,7 @@ jobs:
9595
echo 'http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")' > release_body.txt
9696
echo "" >> release_body.txt
9797
98-
for archive in ./artifacts/*.tar.zst; do
98+
for archive in ./artifacts/**/*.tar.zst; do
9999
FILE_NAME=$(basename "$archive")
100100
SHA=$(sha256sum "$archive" | awk '{print $1}')
101101
NAME="${FILE_NAME%.tar.zst}"

0 commit comments

Comments
 (0)