ci: notify of dry run in build annotations
This commit is contained in:
parent
01ee23cce9
commit
a29cf266f9
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
@ -41,6 +41,11 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Dry Run Notify
|
||||
if: ${{ github.event.inputs.dryrun == 'true' }}
|
||||
run: |
|
||||
echo "::notice::This is a DRY RUN of a production release. No release will be created."
|
||||
|
||||
- name: Get Next Version
|
||||
if: ${{ github.event.inputs.publish == 'true' || github.event.inputs.dryrun == 'true' }}
|
||||
|
|
Loading…
Reference in a new issue