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 d629894 commit f334177Copy full SHA for f334177
.github/workflows/dawn-check.yaml
@@ -46,6 +46,8 @@ jobs:
46
runs-on: ubuntu-latest
47
outputs:
48
needs_build: ${{ steps.release_check.outputs.needs_build }}
49
+ env:
50
+ GH_TOKEN: ${{ github.token }}
51
steps:
52
- name: Checkout code
53
uses: actions/checkout@v4
@@ -90,10 +92,10 @@ jobs:
90
92
run: |
91
93
TAG="${{ steps.tag.outputs.tag }}"
94
if gh release view "$TAG" >/dev/null 2>&1; then
- echo "Release '$TAG' already exists. Skipping upload."
95
+ echo "Release '$TAG' already exists. Skipping build."
96
echo "needs_build=false" >> $GITHUB_OUTPUT
97
else
- echo "Uploading to release: $TAG"
98
+ echo "Starting build for release: $TAG"
99
echo "needs_build=true" >> $GITHUB_OUTPUT
100
fi
101
0 commit comments