-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (46 loc) · 1.08 KB
/
deploy.yml
File metadata and controls
50 lines (46 loc) · 1.08 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
44
45
46
47
48
49
50
name: Deploy to GitHub Pages
on:
push:
branches:
- main
paths:
- 'website/**' # Trigger only if files inside the website/ folder change
pull_request:
branches:
- main
paths:
- 'website/**'
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v5
with:
repository: EvModder/PNG-to-NBT
path: png-to-nbt
- uses: oven-sh/setup-bun@v2
with:
bun-version-file: website/.bun-version
- run: bun ci
- run: bun run sync:map-colors -- ../png-to-nbt/website/src/data/mapColors.ts
- run: bun run build
- uses: actions/upload-pages-artifact@v4
with:
path: website/dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/deploy-pages@v4
id: deployment