Skip to content

Commit 6ea5b15

Browse files
committed
REMOVE fetch before merge
1 parent 965817c commit 6ea5b15

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/publish.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
git config user.name github-actions
2222
git config user.email [email protected]
2323
- name: Merge master into release
24-
run: git merge --no-edit ${{ github.ref_name }}
24+
run: |
25+
git fetch origin ${{ github.ref_name }}
26+
git merge --no-edit ${{ github.ref_name }}
2527
- name: Fetch latest release artifact
2628
id: latest
2729
env:

0 commit comments

Comments
 (0)