반응형
remote: Permission to xxx.git denied to github-actions[bot].
github action으로 version patch up을 자동화 하고 싶어서 다음과 같이 yaml을 작성했는데, 위 이미지와 같은 에러가 떴다.
name: Bump Version
on:
push:
branches:
- main
jobs:
bump-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: git config --global user.email "github-actions@example.com"
- run: git config --global user.name "GitHub Actions"
- uses: actions/setup-node@v1
with:
node-version: 16
- run: npm version patch
- run: git push
- uses: actions/upload-artifact@v2
with:
name: src
path: ./
검색해보니 setting값이 잘못되어 있었다.
해결책
setting->actions->general에서 아래와 같이 설정해주니 해결되었다.
쨘
반응형
'개발 > Git' 카테고리의 다른 글
Amplify에서 GitHub actions 로 배포 자동화 flow 만들기 (0) | 2023.12.25 |
---|---|
Git flow 만든사람이 git flow 쓰지말래 -> trunk based 어때 (1) | 2023.12.20 |
main 리베이스는 제때제때 하자. (0) | 2022.12.11 |
gitignore 적용 안될때 (0) | 2022.04.01 |
git rebase -i : drop으로 필요없는 커밋 날리기 (0) | 2022.02.10 |