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
name: Pages
# Publishes the install scripts (install.sh / install.ps1) to GitHub Pages so
# users can `curl ... | sh` / `irm ... | iex` without cloning the repo. The
# scripts stay canonical at the repo root; this only serves them at a pretty
# URL (https://noahsabaj.github.io/mermaid-cli/install.{sh,ps1}).
on:
push:
branches:
paths:
- install.sh
- install.ps1
- .github/workflows/pages.yml
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Assemble site
run: |
mkdir -p _site
cp install.sh install.ps1 _site/
cat > _site/index.html <<'HTML'
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Install Mermaid</title>
<meta http-equiv="refresh" content="0; url=https://github.com/noahsabaj/mermaid-cli">
</head>
<body>
<p>Install Mermaid (no cargo required):</p>
<pre>curl -fsSL https://noahsabaj.github.io/mermaid-cli/install.sh | sh</pre>
<pre>irm https://noahsabaj.github.io/mermaid-cli/install.ps1 | iex</pre>
<p>See <a href="https://github.com/noahsabaj/mermaid-cli">the repository</a>.</p>
</body>
</html>
HTML
- uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6.0.0
- uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5.0.0
with:
path: _site
- id: deployment
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0