|
|
@@ -19,6 +19,7 @@ jobs:
|
|
|
run: |
|
|
|
git config --local user.name "GitHub Action"
|
|
|
git config --local user.email "info@weseek.co.jp"
|
|
|
+ git remote set-url origin "https://$GITHUB_ACTOR:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY"
|
|
|
|
|
|
- name: Bump version
|
|
|
run: |
|
|
|
@@ -35,7 +36,6 @@ jobs:
|
|
|
- name: Push tag
|
|
|
run: |
|
|
|
TMP_RELEASE_BRANCH=tmp/release-${{ env.RELEASE_VERSION }}
|
|
|
- git remote set-url origin "https://${{ env.GITHUB_ACTOR }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ env.GITHUB_REPOSITORY }}"
|
|
|
git push origin HEAD:$TMP_RELEASE_BRANCH --follow-tags
|
|
|
git push --delete origin $TMP_RELEASE_BRANCH
|
|
|
|