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 6a0eceb commit 681e537Copy full SHA for 681e537
.github/workflows/build.yml
@@ -390,10 +390,11 @@ jobs:
390
needs: publish-github
391
runs-on: ubuntu-latest
392
outputs:
393
- skip: ${{ secrets.INTERSECTBOT_ACCESS_TOKEN != '' }}
+ skip: ${{ steps.check-INTERSECTBOT_ACCESS_TOKEN.outputs.skip }}
394
steps:
395
- - name: Nothing
396
- run: echo ''
+ - id: check-INTERSECTBOT_ACCESS_TOKEN
+ name: Check INTERSECTBOT_ACCESS_TOKEN
397
+ run: echo "skip=${{ secrets.INTERSECTBOT_ACCESS_TOKEN != '' }}" >> "$GITHUB_OUTPUT"
398
399
publish-forum:
400
name: Publish to Forum
0 commit comments