Fix quotes in conditionals

This commit is contained in:
Timur Demin 2022-03-21 01:14:00 +05:00
parent f8a310288a
commit 263e7eea39
No known key found for this signature in database
GPG key ID: 9EDF3F9D9286FA20

View file

@ -15,11 +15,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set tag name from manual dispatch
if: ${{ github.event_name == "workflow_dispatch" }}
if: ${{ github.event_name == 'workflow_dispatch' }}
run: |
echo "tag_name=${{ github.event.inputs.tag }}" >> $GITHUB_ENV
- name: Set tag name from Git
if: ${{ github.event_name == "push" }}
if: ${{ github.event_name == 'push' }}
run: |
echo "tag_name=${{ github.ref_name }}" >> $GITHUB_ENV
- name: Checkout