Skip to content

Commit d64adcc

Browse files
committed
chore(release): use single quotes for strings in GH workflows
1 parent f2ed479 commit d64adcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
name: Publish documentation from "${{ github.ref_name }}" branch to ${{ inputs.docs_env }}
5555
runs-on: ubuntu-latest
5656
# skip during dry runs, publish to production only from branches with names starting with "release", publish to staging from anywhere
57-
if: ${{ !inputs.dry_run && ((startsWith(github.ref_name, "release") && inputs.docs_env == "production") || inputs.docs_env == "staging") }}
57+
if: ${{ !inputs.dry_run && ((startsWith(github.ref_name, 'release') && inputs.docs_env == 'production') || inputs.docs_env == 'staging') }}
5858
outputs:
5959
target-version: $${{ steps.target-version.outputs }}
6060
steps:

0 commit comments

Comments
 (0)