Skip to content

Commit 2bdb04e

Browse files
committed
chore: [#1272] Try to fix the release
1 parent efb48f0 commit 2bdb04e

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/release.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,9 @@ jobs:
107107

108108
- name: Configures Git
109109
run: |
110-
git config --global user.name "${{ github.actor }}"
111-
git config --global user.email "$(git log --format='%ae' HEAD^!)"
112-
git remote set-url origin https://${{ secrets.GIT_REPOSITORY_URL_USERNAME }}:${{ secrets.GIT_REPOSITORY_URL_ACCESS_TOKEN }}@github.com/capricorn86/happy-dom.git
113-
114-
- name: Creates release branch
115-
run: |
116-
git checkout -b release/${{ needs.check-next-version.outputs.next_version }} origin/master
117-
git push origin release/${{ needs.check-next-version.outputs.next_version }}
110+
git config user.name "${{ secrets.GIT_REPOSITORY_USERNAME }}"
111+
git config user.email "${{ secrets.GIT_REPOSITORY_EMAIL }}"
112+
git remote set-url origin https://${{ secrets.GIT_REPOSITORY_USERNAME }}:${{ secrets.GIT_REPOSITORY_ACCESS_TOKEN }}@github.com/capricorn86/happy-dom.git
118113
119114
- name: Pushes Git tag
120115
run: |

0 commit comments

Comments
 (0)