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 eedb8de commit b46d45cCopy full SHA for b46d45c
.github/workflows/dawn-check.yaml
@@ -89,11 +89,15 @@ jobs:
89
id: release_check
90
run: |
91
TAG="${{ steps.tag.outputs.tag }}"
92
+
93
+ echo "Checking for release: $TAG"
94
+ gh release view "$TAG"
95
96
if gh release view "$TAG" >/dev/null 2>&1; then
- echo "Release '$TAG' already exists. Skipping upload."
97
+ echo "Release '$TAG' already exists. Skipping build."
98
echo "needs_build=false" >> $GITHUB_OUTPUT
99
else
- echo "Uploading to release: $TAG"
100
+ echo "Starting build for release: $TAG"
101
echo "needs_build=true" >> $GITHUB_OUTPUT
102
fi
103
0 commit comments