Skip to content

Commit 3fbf326

Browse files
committed
Use single quotes in actions expressions
1 parent 19cef1d commit 3fbf326

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ jobs:
4848
cat ghostferry-$GITHUB_SHA.sha256sum
4949
5050
- name: Releasing production Ghostferry
51-
if: ${{ github.ref_type == "branch" && github.ref_name == "main" }}
51+
if: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
5252
run: gh release create release-${GITHUB_SHA::7} --target ${{ github.ref_name }} --prerelease ghostferry*
5353
env:
5454
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5555

5656
- name: Releasing canary Ghostferry
57-
if: ${{ github.ref_type == "tag" && startsWith(github.ref_name, "canary/") }}
57+
if: ${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'canary/') }}
5858
run: gh release create ${{github.ref_name}} --prerelease --verify-tag --notes-from-tag --latest=false ghostferry*
5959
env:
6060
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)