Skip to content

Commit 3099fe2

Browse files
authored
ci: skip changelog generation when dry run flag is active
1 parent e00b0d1 commit 3099fe2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ jobs:
206206
- name: Update CHANGELOG
207207
id: changelog
208208
uses: Requarks/changelog-action@v1
209-
if: env.SHOULD_DEPLOY == 'true'
209+
if: ${{ env.SHOULD_DEPLOY == 'true' && github.event.inputs.dryrun == 'false' }}
210210
with:
211211
token: ${{ github.token }}
212212
tag: ${{ env.PKG_VERSION }}

0 commit comments

Comments
 (0)