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 30ba566 commit 4b47065Copy full SHA for 4b47065
.github/workflows/rc.yaml
@@ -29,10 +29,10 @@ jobs:
29
ref: ${{ steps.get_branch.outputs.branch }}
30
fetch-depth: 0
31
32
- - name: Fetch main branch
+ - name: Ensure local main branch exists and is up to date
33
run: |
34
- git fetch origin main:refs/remotes/origin/main
35
- git branch -a
+ git fetch origin main
+ git branch main origin/main
36
37
- uses: actions/setup-go@v4
38
with:
@@ -53,7 +53,6 @@ jobs:
53
- name: checkIfCommitHelperGoWillBePublished
54
id: checkCommitHelperGo
55
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