Skip to content

Commit a16ffc6

Browse files
committed
Another CI fix
1 parent ca54c9a commit a16ffc6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dawn.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ jobs:
211211
uses: actions/upload-artifact@v4
212212
with:
213213
name: dawn-webgpu-bundle
214-
path: Dawn/dist/dawn_webgpu_${{steps.set-bundle-name.outputs.bundle_name}}.zip
214+
path: Dawn/dist/dawn_webgpu_${{steps.set-bundle-name.outputs.bundle_name}}
215215
retention-days: 30
216216

217217
create-release:
@@ -232,7 +232,7 @@ jobs:
232232
id: compute-sha256
233233
run: |
234234
cd dawn-bundle
235-
sha256sum dawn_webgpu_${{needs.create-bundle.outputs.bundle_name}}.zip > sha256sum.txt
235+
sha256sum dawn_webgpu_${{needs.create-bundle.outputs.bundle_name}} > sha256sum.txt
236236
echo "sha256sum=$(cat sha256sum.txt)" >> $GITHUB_OUTPUT
237237
238238
- name: Tag name
@@ -273,7 +273,7 @@ jobs:
273273
else
274274
echo "Uploading to release: $TAG"
275275
cd dawn-bundle
276-
gh release upload $TAG dawn_webgpu_${{needs.get-dawn-source.outputs.chromium_dawn_suffix}}.zip --clobber
276+
gh release upload $TAG dawn_webgpu_${{needs.create-bundle.outputs.bundle_name}} --clobber
277277
fi
278278
env:
279279
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)