You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
982 B
YAML
37 lines
982 B
YAML
# .
|
|
name: 🚀 Deploy INFO-SYS
|
|
on:
|
|
# Triggers the workflow on push or pull request events but only for the master branch
|
|
push:
|
|
branches: [ master ]
|
|
jobs:
|
|
gh-win-cn-all-deploy:
|
|
name: 🎉 Deploy InfoSys to CN
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 🚚 Get latest code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: 📂 Sync files
|
|
uses: SamKirkland/FTP-Deploy-Action@v4.3.4
|
|
with:
|
|
server: ${{ secrets.CN_FTP_SERVER }}
|
|
username: ${{ secrets.CN_FTP_USER }}
|
|
password: ${{ secrets.CN_FTP_PASSWORD }}
|
|
port: ${{ secrets.CN_FTP_PORT }}
|
|
local-dir: ./
|
|
server-dir: /wwwroot/origin-cht.mycht.cn/
|
|
dry-run: true
|
|
# log-level: verbose
|
|
exclude: |
|
|
**/.git*
|
|
**/.git*/**
|
|
**/node_modules/**
|
|
*.exe
|
|
*.docx
|
|
**/**
|
|
!application/**
|
|
!info.php
|
|
!.htaccess
|
|
!robots.txt
|