-
Notifications
You must be signed in to change notification settings - Fork 1
87 lines (74 loc) · 2.93 KB
/
Copy pathpages.yml
File metadata and controls
87 lines (74 loc) · 2.93 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Deploy web/ demo to GitHub Pages (custom domain micron-parser-go.quad4.io).
# Builds WASM in CI (micron.wasm and wasm_exec.js are gitignored).
#
# Bump action versions by changing the tag in `uses:` and the SHA in the comment
# block below (verify with):
# curl -sL https://api.github.com/repos/<org>/<repo>/git/refs/tags/<tag> | jq -r '.object.sha'
# For annotated third-party tags, resolve the commit:
# curl -sL https://api.github.com/repos/<org>/<repo>/git/tags/<tag_sha> | jq -r '.object.sha'
#
# Pinned first-party actions (bump tag and SHA together when upgrading):
# actions/checkout@v6.0.1 8e8c483db84b4bee98b60c0593521ed34d9990e8
# actions/setup-go@v6.1.0 4dc6199c7b1a012772edbd06daecab0f50c9053c
# actions/configure-pages@v6.0.0 45bfe0192ca1faeb007ade9deae92b16b8254a0d
# actions/upload-pages-artifact@v5.0.0 fc324d3547104276b827a68afc52ff2a11cc49c9
# actions/deploy-pages@v5.0.1 368f82528645a54fb793d4d04e342629a3f51346
name: Pages
on:
push:
branches:
- master
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
GO_VERSION: "1.27.1"
jobs:
build:
name: Build site
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Harden runner
uses: step-security/harden-runner@e14015d583714f6e62063499dc959a02595150a1 # v2.21.1
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e
with:
go-version: ${{ env.GO_VERSION }}
# Stdlib-only module has no go.sum; skip dependency cache.
cache: false
- name: Build WASM
run: make wasm
- name: Configure Pages
uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9
with:
path: web
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
timeout-minutes: 10
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Harden runner
uses: step-security/harden-runner@e14015d583714f6e62063499dc959a02595150a1 # v2.21.1
with:
egress-policy: audit
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@368f82528645a54fb793d4d04e342629a3f51346