fix: deploy job 添加 checkout 步骤修复 scp 找不到文件的问题
All checks were successful
Build and Deploy / build (push) Successful in 19s
Build and Deploy / deploy (push) Successful in 31s

This commit is contained in:
cheney 2026-08-28 17:54:12 +08:00
parent 39abb1974d
commit f58970783f

View File

@ -26,6 +26,9 @@ jobs:
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout
uses: actions/checkout@v4
- name: Deploy to server - name: Deploy to server
uses: appleboy/ssh-action@master uses: appleboy/ssh-action@master
with: with: