Fix quotes in conditionals
This commit is contained in:
parent
f8a310288a
commit
263e7eea39
1 changed files with 2 additions and 2 deletions
4
.github/workflows/docker.yml
vendored
4
.github/workflows/docker.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue