Merge pull request 'Fix: 시놀로지 CI 러너의 node 부재로 인한 Checkout 실패 우회' (#23) from feature/fix-ci-node-missing into main

Reviewed-on: http://192.168.123.100:8418/KimJaeHyun/myfinance/pulls/23
This commit is contained in:
2026-06-13 20:08:31 +09:00
+9 -1
View File
@@ -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: |