summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorFrancis Lavoie <lavofr@gmail.com>2020-06-25 17:58:44 -0400
committerGitHub <noreply@github.com>2020-06-25 21:58:44 +0000
commit61b7002d262ab748e3db7cc705c8290447fb5b34 (patch)
treed1cb224a39dda5e77a79b69e64f22888cd7ede0b /.github
parentb1480eb52f8e3dd621798e2b74b4e3e47bacc9f5 (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')
-rw-r--r--.github/workflows/release.yml2
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: |