Skip to content

Commit

Permalink
REMOVE fetch before merge
Browse files Browse the repository at this point in the history
  • Loading branch information
avdv committed Sep 23, 2024
1 parent 965817c commit 6ea5b15
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
git config user.name github-actions
git config user.email [email protected]
- name: Merge master into release
run: git merge --no-edit ${{ github.ref_name }}
run: |
git fetch origin ${{ github.ref_name }}
git merge --no-edit ${{ github.ref_name }}
- name: Fetch latest release artifact
id: latest
env:
Expand Down

0 comments on commit 6ea5b15

Please sign in to comment.