41 lines
877 B
YAML
41 lines
877 B
YAML
name: Build and deploy website
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: Install dependencies
|
|
run: echo y | npm exec -- pnpm install
|
|
- name: Build
|
|
run: npm exec -- pnpm build
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v3 # Deprecated and v4+ is not supported for GHES
|
|
with:
|
|
name: dist
|
|
path: dist
|
|
|
|
deploy:
|
|
runs-on: host
|
|
|
|
steps:
|
|
- name: Download artifacts
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: dist
|
|
path: dist
|
|
- name: Move files to server
|
|
run: |
|
|
rm -rf /var/www/beta.martials.no/*
|
|
cp -r dist/* /var/www/beta.martials.no
|