ci: fix eq operator

This commit is contained in:
will Farrell 2020-12-02 11:23:41 -07:00
parent 61149875ae
commit 71b0bf9ac2
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