We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cce216 commit 6b78742Copy full SHA for 6b78742
.github/workflows/build-scuffle.yaml
@@ -76,7 +76,7 @@ jobs:
76
- name: Upload artifact
77
uses: actions/upload-artifact@v4
78
with:
79
- name: ${{ env.NAME }}.tar.zst
+ name: ${{ env.NAME }}
80
path: artifacts-archive/${{ env.NAME }}.tar.zst
81
82
release:
@@ -95,7 +95,7 @@ jobs:
95
echo 'http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")' > release_body.txt
96
echo "" >> release_body.txt
97
98
- for archive in ./artifacts/*.tar.zst; do
+ for archive in ./artifacts/**/*.tar.zst; do
99
FILE_NAME=$(basename "$archive")
100
SHA=$(sha256sum "$archive" | awk '{print $1}')
101
NAME="${FILE_NAME%.tar.zst}"
0 commit comments