Skip to content

Commit a2eb23b

Browse files
committed
Fixes
1 parent 212f6d8 commit a2eb23b

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/dawn.yaml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -256,12 +256,8 @@ jobs:
256256
- name: Upload Release Assets
257257
run: |
258258
TAG="${{ steps.tag.outputs.tag }}"
259-
if gh release view "$TAG" >/dev/null 2>&1; then
260-
echo "Release '$TAG' already exists. Skipping upload."
261-
else
262-
echo "Uploading to release: $TAG"
263-
cd dawn-bundle
264-
gh release upload $TAG ${{needs.create-bundle.outputs.bundle_name}} --clobber
265-
fi
259+
echo "Uploading to release: $TAG"
260+
cd dawn-bundle
261+
gh release upload $TAG ${{needs.create-bundle.outputs.bundle_name}} --clobber
266262
env:
267263
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Dawn/dawn_source.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ def get_matching_dawn_for_chromium(channel: str = "canary") -> None:
4646
print(
4747
f"Downloading Dawn matching Chromium version {chromium_dawn_version} ({chromium_dawn_hash})..."
4848
)
49-
fetch_dawn_source(chromium_dawn_hash)
5049

5150
version_data = {
5251
"chromium_dawn_hash": chromium_dawn_hash,

0 commit comments

Comments
 (0)