File tree 1 file changed +3
-8
lines changed
1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -107,14 +107,9 @@ jobs:
107
107
108
108
- name : Configures Git
109
109
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
118
113
119
114
- name : Pushes Git tag
120
115
run : |
You can’t perform that action at this time.
0 commit comments