-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from alkong-dalkong/feature/#21_fix_github_act…
…ion_permission feat: PUSH_TOKEN 추가 (#21)
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
git config --global user.email "[email protected]" | ||
- name: Set destination repo 🌈 | ||
run: git remote add destination-repo https://github.com/AlkongDalkong/alkong-dalkong_fe.git | ||
run: git remote add destination-repo https:${{ secrets.PUSH_TOKEN }}//github.com/AlkongDalkong/alkong-dalkong_fe.git | ||
|
||
- name: Push develop to develop 🚀 | ||
run: git push destination-repo develop:develop | ||
run: git push destination-repo develop:develop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
git config --global user.email "[email protected]" | ||
- name: Set destination repo 🌈 | ||
run: git remote add destination-repo https://github.com/AlkongDalkong/alkong-dalkong_fe.git | ||
run: git remote add destination-repo https://${{ secrets.PUSH_TOKEN }}github.com/AlkongDalkong/alkong-dalkong_fe.git | ||
|
||
- name: Push main to main 🚀 | ||
run: git push destination-repo main:main | ||
run: git push destination-repo main:main |