-
Notifications
You must be signed in to change notification settings - Fork 1
54 lines (45 loc) · 1.18 KB
/
deploy-ghpages.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
43
44
45
46
47
48
49
50
51
52
53
54
# Build and deploy pages to the gh-pages branch
name: Build & Deploy
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
schedule:
- cron: '15 8-20/4 * * 1-5'
jobs:
build:
runs-on: ubuntu-latest
env:
PUBLIC_URL: ${{ vars.PUBLIC_URL }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 'latest'
- name: Build static site
run: |
bun install
bun run build
- name: Upload build folder as pages artifact
uses: actions/upload-pages-artifact@v1
if: github.ref == 'refs/heads/main'
with:
path: dist${{ vars.PUBLIC_URL }}
deploy:
if: github.ref == 'refs/heads/main'
needs: build
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2