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 c11fa4f commit 9b73988Copy full SHA for 9b73988
.github/workflows/release.yml
@@ -30,7 +30,11 @@ jobs:
30
# https://github.com/orgs/community/discussions/26238
31
if: ${{ !github.event.workflow_run || github.event.workflow_run.conclusion == 'success' }}
32
steps:
33
- - if: ${{ !startsWith(github.ref, 'refs/tags/') || github.event.workflow_run }}
+ - name: print github context
34
+ env:
35
+ GITHUB_CONTEXT: ${{ toJSON(github) }}
36
+ run: echo $GITHUB_CONTEXT
37
+ - if: ${{ !startsWith(github.ref, 'refs/tags/') && !github.event.workflow_run }}
38
run: echo "flags=--snapshot" >> $GITHUB_ENV
39
- uses: actions/checkout@v4
40
with:
0 commit comments