We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ff37a3 commit 30ba566Copy full SHA for 30ba566
.github/workflows/rc.yaml
@@ -30,7 +30,9 @@ jobs:
30
fetch-depth: 0
31
32
- name: Fetch main branch
33
- run: git fetch origin main:refs/remotes/origin/main
+ run: |
34
+ git fetch origin main:refs/remotes/origin/main
35
+ git branch -a
36
37
- uses: actions/setup-go@v4
38
with:
@@ -51,6 +53,7 @@ jobs:
51
53
- name: checkIfCommitHelperGoWillBePublished
52
54
id: checkCommitHelperGo
55
run: |
56
57
pnpm changeset status > changeset-status.txt
58
isPublished=$(grep -q "@naverpay/commithelper-go" changeset-status.txt && echo "true" || echo "false")
59
if [ "$isPublished" = "false" ]; then
0 commit comments