mkgg/.forgejo/workflows/build.yaml

56 lines
1.2 KiB
YAML
Raw Normal View History

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
2024-12-10 19:57:14 +01:00
- name: Cache npm dependencies
2024-12-10 20:01:34 +01:00
uses: actions/cache@v2
2024-12-10 19:57:14 +01:00
with:
path: '~/.npm'
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
2024-12-10 17:54:15 +01:00
- 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"
2024-12-10 20:18:58 +01:00
options: "--delete"