-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (27 loc) · 878 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
name: Deploy Fractal Play
on:
push:
branches:
- trunk
jobs:
deploy:
permissions:
pages: write
id-token: write
environment:
name: github-pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm install --global elm-tooling
- name: Copy static files
run: mkdir -p dist && cp -r public/* dist/ && cp LICENSE dist/LICENSE.txt
- name: Build
run: npx elm make src/Main.elm --output=dist/fractal-play.js
- name: Upload
uses: actions/upload-pages-artifact@v3
with:
path: dist/
- name: Deploy
uses: actions/deploy-pages@v4