ci: fix expression

This commit is contained in:
will Farrell 2020-12-02 11:22:09 -07:00
parent 2c633af586
commit 61149875ae
No known key found for this signature in database
GPG Key ID: 3FC6D79E2208B22A

View File

@ -32,9 +32,9 @@ jobs:
- name: Inject slug/short variables - name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v3.x uses: rlespinasse/github-slug-action@v3.x
- if: github.ref === 'refs/heads/main' - if: ${{ github.ref === 'refs/heads/main' }}
run: echo ::set-output name=tag::latest run: echo ::set-output name=tag::latest
- if: startsWith(github.ref, 'refs/tags/') - if: ${{ startsWith(github.ref, 'refs/tags/') }}
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
- if: env.tag - if: env.tag