We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d16da7c commit cbba900Copy full SHA for cbba900
.github/workflows/cd.yaml
@@ -61,9 +61,9 @@ jobs:
61
run: git config --global user.email "actions@github.com" && git config --global user.name "github-actions"
62
63
- name: Create Continuous Deployment - Beta (non-prod)
64
- if: steps.get_branch.outputs.branch == 'master' && !inputs.production_release && github.actor != 'actions-user'
+ if: steps.get_branch.outputs.branch == 'master' && !inputs.production_release && github.triggering_actor != 'actions-user'
65
run: |
66
- echo Actor: ${{ github.actor }}
+ echo Github: ${{ github.triggering_actor }}
67
poetry run semantic-release \
68
-v DEBUG \
69
--prerelease \
0 commit comments