tailwind-nextjs-blog/.github/workflows/build-and-deploy-by-ftp.yaml
Ivan Li 87d7f43afb
Some checks failed
🚀 Build and deploy by ftp / 🎉 Deploy (push) Failing after 3m55s
build(ci): 修复构建问题。
2023-09-10 09:32:33 +00:00

34 lines
733 B
YAML

name: 🚀 Build and deploy by ftp
on:
push:
branches:
- master
- main
jobs:
ftp-build-and-deploy:
name: 🎉 Deploy
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: https://github.com/actions/checkout@v3
- uses: https://github.com/actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn install
- run: yarn build
- name: 📂 Sync files
uses: https://github.com/SamKirkland/FTP-Deploy-Action@v4.3.4
with:
server: ${{ secrets.ftp_server }}
username: ${{ secrets.ftp_username }}
password: ${{ secrets.ftp_password }}
server-dir: ./WEB/
local-dir: ./out/