Fix: 시놀로지 CI 러너의 node 부재 해결을 위해 Checkout 단계를 수동 git 명령으로 대체
This commit is contained in:
@@ -13,7 +13,15 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
run: |
|
||||
if [ -d .git ]; then
|
||||
git remote set-url origin http://x-access-token:${{ secrets.GITHUB_TOKEN }}@192.168.123.100:8418/KimJaeHyun/myfinance.git
|
||||
else
|
||||
git init
|
||||
git remote add origin http://x-access-token:${{ secrets.GITHUB_TOKEN }}@192.168.123.100:8418/KimJaeHyun/myfinance.git
|
||||
fi
|
||||
git fetch origin ${{ github.sha }} --depth=1
|
||||
git reset --hard FETCH_HEAD
|
||||
|
||||
- name: Install Python Dependencies
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user