32 lines
831 B
YAML
32 lines
831 B
YAML
on: push
|
|
name: Build and Publish Front End Framework Website
|
|
jobs:
|
|
FTP-Deploy-Action:
|
|
name: FTP-Deploy-Action
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.1.0
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: Use Node.js 12.x
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '12.x'
|
|
|
|
- name: Build Project
|
|
run: |
|
|
npm install
|
|
npm run build --if-present
|
|
|
|
- name: List output files
|
|
run: ls
|
|
|
|
- name: FTP-Deploy-Action
|
|
uses: SamKirkland/FTP-Deploy-Action@3.1.1
|
|
with:
|
|
ftp-server: ${{ secrets.ftp_server }}
|
|
ftp-username: ${{ secrets.ftp_user }}
|
|
ftp-password: ${{ secrets.ftp_pwd }}
|
|
local-dir: build # This folder is NOT going to upload by default unless you add it to .git-ftp-include
|