ci: skip changelog generation when dry run flag is active
This commit is contained in:
parent
e00b0d126c
commit
3099fe267b
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -206,7 +206,7 @@ jobs:
|
|||
- name: Update CHANGELOG
|
||||
id: changelog
|
||||
uses: Requarks/changelog-action@v1
|
||||
if: env.SHOULD_DEPLOY == 'true'
|
||||
if: ${{ env.SHOULD_DEPLOY == 'true' && github.event.inputs.dryrun == 'false' }}
|
||||
with:
|
||||
token: ${{ github.token }}
|
||||
tag: ${{ env.PKG_VERSION }}
|
||||
|
|
Loading…
Reference in a new issue