From 61149875ae4290d1ba2023e78807eac90685c355 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:22:09 -0700 Subject: [PATCH] ci: fix expression --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 26c3391..1e8a94e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,9 +32,9 @@ jobs: - name: Inject slug/short variables 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 - - if: startsWith(github.ref, 'refs/tags/') + - if: ${{ startsWith(github.ref, 'refs/tags/') }} run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} - if: env.tag