We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdb7108 commit 597b9b7Copy full SHA for 597b9b7
1 file changed
.github/workflows/release-please-gha.yml
@@ -20,7 +20,16 @@ permissions:
20
contents: read
21
22
jobs:
23
+ check-secret:
24
+ runs-on: ubuntu-latest
25
+ outputs:
26
+ has-token: ${{ steps.check.outputs.has-token }}
27
+ steps:
28
+ - id: check
29
+ run: echo "has-token=${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM != '' }}" >> $GITHUB_OUTPUT
30
release:
31
+ needs: check-secret
32
+ if: needs.check-secret.outputs.has-token == 'true'
33
runs-on: ubuntu-latest
34
steps:
35
- uses: actions/checkout@v6
0 commit comments