-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (35 loc) · 1.05 KB
/
deploy-latest.yml
File metadata and controls
43 lines (35 loc) · 1.05 KB
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
43
name: Deploy main → gh-pages/latest
on:
push:
branches: [main]
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
permissions: write-all
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: pages
cancel-in-progress: false
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup repo 🔧
uses: ./.github/actions
- name: Build site
env:
BASE_PATH: "/latest"
NEXT_PUBLIC_BASE_PATH: "/latest"
TARGET_FOLDER: latest
run: pnpm buildRepo
- name: Deploying latest 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: out
target-folder: latest
clean: false