Skip to content

Commit 681e537

Browse files
authored
Update build.yml
1 parent 6a0eceb commit 681e537

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -390,10 +390,11 @@ jobs:
390390
needs: publish-github
391391
runs-on: ubuntu-latest
392392
outputs:
393-
skip: ${{ secrets.INTERSECTBOT_ACCESS_TOKEN != '' }}
393+
skip: ${{ steps.check-INTERSECTBOT_ACCESS_TOKEN.outputs.skip }}
394394
steps:
395-
- name: Nothing
396-
run: echo ''
395+
- id: check-INTERSECTBOT_ACCESS_TOKEN
396+
name: Check INTERSECTBOT_ACCESS_TOKEN
397+
run: echo "skip=${{ secrets.INTERSECTBOT_ACCESS_TOKEN != '' }}" >> "$GITHUB_OUTPUT"
397398

398399
publish-forum:
399400
name: Publish to Forum

0 commit comments

Comments
 (0)