diff options
author | Francis Lavoie <lavofr@gmail.com> | 2020-06-25 17:58:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 21:58:44 +0000 |
commit | 61b7002d262ab748e3db7cc705c8290447fb5b34 (patch) | |
tree | d1cb224a39dda5e77a79b69e64f22888cd7ede0b /.github/workflows | |
parent | b1480eb52f8e3dd621798e2b74b4e3e47bacc9f5 (diff) |
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
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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: | |