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