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 bfc0cdd commit 3723927Copy full SHA for 3723927
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