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.
2 parents 5fea996 + 3723927 commit 0960dd0Copy full SHA for 0960dd0
1 file changed
.github/workflows/release.yml
@@ -114,9 +114,13 @@ jobs:
114
115
- name: ✅ Push to remote repository
116
env:
117
- DRY_RUN_ARGS: ${{ github.event.inputs.dryRun == 'yes' && '--dry-run' || '' }}
+ IS_DRY_RUN: ${{ github.event.inputs.dryRun }}
118
run: |
119
- git push origin --no-verify --follow-tags "${DRY_RUN_ARGS}"
+ if [ "${IS_DRY_RUN}" = "yes" ]; then
120
+ git push origin --no-verify --follow-tags --dry-run
121
+ else
122
+ git push origin --no-verify --follow-tags
123
+ fi
124
125
- name: 📝 Create the Github Release
126
0 commit comments