Skip to content

Commit

Permalink
ci: check 'github.ref' in npm release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
zegl committed Mar 4, 2024
1 parent 15d7709 commit 1c94a93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_npm_astro.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: "Publish"
timeout-minutes: 15
runs-on: ubuntu-22.04
if: ${{ startsWith(github.ref, "refs/tags/astro/") }}
if: ${{ startsWith(github.ref, 'refs/tags/astro/') }}

steps:
- name: Check out code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_npm_sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: "Publish"
timeout-minutes: 15
runs-on: ubuntu-22.04
if: ${{ startsWith(github.ref, "refs/tags/jssdk/") }}
if: ${{ startsWith(github.ref, 'refs/tags/jssdk/') }}

steps:
- name: Check out code
Expand Down

0 comments on commit 1c94a93

Please sign in to comment.