Skip to content

Commit a62f2f3

Browse files
authored
Fix tag issue (#64)
Cannot create a tag that contains colon.
1 parent 09ddde9 commit a62f2f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
publish-pyth-sdk:
99
name: Publish Pyth SDK
10-
if: ${{ startsWith(github.ref, "refs/tags/pyth-sdk:v") }}
10+
if: ${{ startsWith(github.ref, "refs/tags/pyth-sdk@v") }}
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout sources
@@ -26,7 +26,7 @@ jobs:
2626
working-directory: "pyth-sdk"
2727
publish-pyth-sdk-solana:
2828
name: Publish Pyth SDK Solana
29-
if: ${{ startsWith(github.ref, "refs/tags/pyth-sdk-solana:v") }}
29+
if: ${{ startsWith(github.ref, "refs/tags/pyth-sdk-solana@v") }}
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout sources
@@ -45,7 +45,7 @@ jobs:
4545
working-directory: "pyth-sdk-solana"
4646
publish-pyth-sdk-terra:
4747
name: Publish Pyth SDK CW
48-
if: ${{ startsWith(github.ref, "refs/tags/pyth-sdk-cw:v") }}
48+
if: ${{ startsWith(github.ref, "refs/tags/pyth-sdk-cw@v") }}
4949
runs-on: ubuntu-latest
5050
steps:
5151
- name: Checkout sources

0 commit comments

Comments
 (0)