Skip to content

Commit

Permalink
fix: git-push.yml 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seung365 committed Dec 5, 2024
1 parent 18389b5 commit b4316df
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/git-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,21 @@ jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write # 이 권한 추가가 중요합니다
contents: write
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false # 이 옵션 추가
persist-credentials: false
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm install
- name: Configure Git
run: |
git config --global user.email "${{ secrets.OFFICIAL_ACCOUNT_EMAIL }}"
git config --global user.name "${{ github.actor }}"
- name: Pushes to another repository
uses: cpina/github-action-push-to-another-repository@main
env:
Expand All @@ -28,6 +32,7 @@ jobs:
destination-github-username: 'seung365'
destination-repository-name: 'alphamail-frontend'
user-email: ${{ secrets.OFFICIAL_ACCOUNT_EMAIL }}
user-name: ${{ github.actor }} # GitHub 사용자 이름 추가
user-name: ${{ github.actor }}
commit-message: 'Syncing main branch'
target-branch: main
force: true # 이 옵션 추가

0 comments on commit b4316df

Please sign in to comment.