Martin Berg Alstad d67f857ee6
Some checks failed
Build and deploy website / build (push) Failing after 3s
Build and deploy website / deploy (push) Failing after 3s
Remove node setup
2024-09-28 14:50:00 +02:00

40 lines
815 B
YAML

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