-
Notifications
You must be signed in to change notification settings - Fork 8
42 lines (33 loc) · 867 Bytes
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Build and Deploy
permissions:
contents: write
on:
push:
tags:
- 'v*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
- name: spa-github-index-page 📒
run: pnpm run spa-github-index-page
- name: Install and Build 🔧
run: |
pnpm i
pnpm run build
- name: spa-github-404-page 🔷
run: pnpm run spa-github-404-page
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build