Prevent releases on wrong tag

This commit is contained in:
Bassem Dghaidi 2023-03-14 12:56:45 +00:00 committed by GitHub
parent 9c3fce4727
commit 3b1fe11d3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -31,6 +31,12 @@ jobs:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.release.name, 'gha-runner-scale-set-') }}
steps:
- name: Debug
run: |
echo "${{ github.event.release.name }}"
echo "${{ github.event.release.tag_name }}"
echo "${{ github.event }}"
- name: Checkout
uses: actions/checkout@v3