From 61b7002d262ab748e3db7cc705c8290447fb5b34 Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Thu, 25 Jun 2020 17:58:44 -0400 Subject: ci: Apparently only single-quote strings are supported (#3523) https://help.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#literals https://github.com/caddyserver/caddy/actions/runs/147953515 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 081bcfa..02129ab 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,7 +73,7 @@ jobs: # Only publish on non-special tags (e.g. non-beta) - name: Publish .deb to Gemfury - if: ${{ steps.vars.outputs.tag_special == "" }} + if: ${{ steps.vars.outputs.tag_special == '' }} env: GEMFURY_PUSH_TOKEN: ${{ secrets.GEMFURY_PUSH_TOKEN }} run: | -- cgit v1.2.3