Merge pull request #157 from Type-Style/dev #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy via ftp | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm i | |
- name: preBuild | |
run: npm run prebuild | |
- name: Build | |
run: npm run build:prod | |
- name: postBuild | |
run: npm run postbuild | |
- name: copy views to be deployed | |
run: | | |
cp -R views/ dist/ | |
- name: Upload ftp | |
uses: airvzxf/ftp-deployment-action@latest | |
with: | |
server: ${{ secrets.FTP_SERVER }} | |
user: ${{ secrets.FTP_USERNAME }} | |
password: ${{ secrets.FTP_PASSWORD }} | |
local_dir: "dist" |