fix: add checkout step and sync code to host volume in deployment pipeline
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 8s

This commit is contained in:
jade
2026-07-23 23:28:29 +09:00
parent abf7a435a4
commit b5dbcc54f0
8 changed files with 231 additions and 0 deletions

View File

@@ -11,6 +11,14 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Sync Code to Host Volume
run: |
echo "Copying latest code to /app (Host Volume)..."
cp -a . /app/
- name: Deploy Task on Host
run: |
echo "Starting Standard CI/CD Deploy pipeline..."