Skip to content

Commit

Permalink
Merge pull request #59 from alkong-dalkong/feature/#21_fix_github_act…
Browse files Browse the repository at this point in the history
…ion_permission

feat: PUSH_TOKEN 추가 (#21)
  • Loading branch information
G0MTENG authored Aug 24, 2024
2 parents dc14e5a + 3638ae4 commit 7afa364
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/develop-push-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/main-push-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7afa364

Please sign in to comment.