ci: notify of dry run in build annotations

This commit is contained in:
Nicolas Giard 2022-04-14 17:01:34 -04:00 committed by GitHub
parent 01ee23cce9
commit a29cf266f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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' }}