forked from busytex/busytex
-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (54 loc) · 2.11 KB
/
build-pages.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
55
56
57
58
59
60
61
62
63
64
name: build-pages
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# 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
on:
workflow_dispatch:
inputs:
wasmreleasetag:
description: 'wasm_release_tag'
required: true
default: build_wasm_2239522285fe7609dfeedb0f5474cc7753408486_6523319742_1
jobs:
build-pages:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- run: |
mkdir -p build/wasm/
cd build/wasm/
wget https://github.com/bnw/busytex-async/releases/download/${{ github.event.inputs.wasmreleasetag }}/busytex.wasm
wget https://github.com/bnw/busytex-async/releases/download/${{ github.event.inputs.wasmreleasetag }}/busytex.js
cd ../../
- run: cd $GITHUB_WORKSPACE && npm install && npm run build
- run: |
mkdir pages
cd $GITHUB_WORKSPACE/pages
mkdir -p example
cp ../example/* example/
mkdir -p build/wasm/
cp ../build/wasm/busytex.wasm ../build/wasm/busytex.js build/wasm/
mkdir -p build-js/src/
cp ../build-js/src/BusytexAsync.browser.js build-js/src/
mkdir -p typescript/test/assets
cp ../typescript/test/assets/* typescript/test/assets/
- uses: actions/upload-pages-artifact@v2
with:
path: pages
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build-pages
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2