Skip to content

Commit

Permalink
Test using string literal with single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
henryclw committed May 5, 2022
1 parent 1763166 commit 170e7b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ jobs:
latest=false
tags: |
type=pep440,pattern={{raw}}
type=raw,value=develop,enable=${{ github.ref == format('refs/heads/{0}', 'develop') }}
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
type=raw,value=develop,enable=${{ github.ref == 'refs/heads/develop' }}
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/master' }}
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
- name: Echo different output of set-tag
run: echo "The old set-tag output is matrixdotorg/synapse:${{ steps.set-tag-old.outputs.tag }} \n The new set-tag output is ${{ steps.set-tag-new.outputs.tags }}"
Expand Down

0 comments on commit 170e7b3

Please sign in to comment.