2024-12-10 17:54:15 +01:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
|
|
|
|
- name: Build project
|
|
|
|
run: npm install && npm run build
|
|
|
|
|
|
|
|
- name: Upload production-ready build files
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: production-files
|
2024-12-10 19:52:35 +01:00
|
|
|
path: ./dist
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
name: Deploy
|
2024-12-10 19:53:30 +01:00
|
|
|
needs: build
|
2024-12-10 19:52:35 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Download artifact
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: production-files
|
|
|
|
path: ./dist
|
|
|
|
|
|
|
|
- name: Upload ftp
|
2024-12-10 19:55:05 +01:00
|
|
|
uses: https://git.lgbt/mirror/ftp-action@releases/v2
|
2024-12-10 19:52:35 +01:00
|
|
|
with:
|
|
|
|
host: ${{ secrets.FTP_SERVER }}
|
|
|
|
user: ${{ secrets.FTP_USER }}
|
|
|
|
password: ${{ secrets.FTP_PASSWORD }}
|
|
|
|
localDir: "dist"
|
|
|
|
remoteDir: "mkgg"
|
|
|
|
options: "--delete --asci"
|