tangled
alpha
login
or
join now
tombl.dev
/
dhtml
1
fork
atom
a post-component library for building user-interfaces on the web.
1
fork
atom
overview
issues
pulls
pipelines
ci: build dist before site deploy
tombl.dev
1 year ago
126ac338
1b2093fe
verified
This commit was signed with the committer's
known signature
.
tombl.dev
SSH Key Fingerprint:
SHA256:d8AHgL5V+3WdvGdDb3SVBfb0RIRJfkKcqhQ5aG1mVNk=
+30
1 changed file
expand all
collapse all
unified
split
.github
workflows
build.yml
+30
.github/workflows/build.yml
reviewed
···
1
1
+
on:
2
2
+
push:
3
3
+
branches: [main]
4
4
+
5
5
+
permissions:
6
6
+
contents: read
7
7
+
pages: write
8
8
+
id-token: write
9
9
+
10
10
+
concurrency:
11
11
+
group: pages
12
12
+
cancel-in-progress: false
13
13
+
14
14
+
jobs:
15
15
+
deploy:
16
16
+
environment:
17
17
+
name: github-pages
18
18
+
url: ${{ steps.deployment.outputs.page_url }}
19
19
+
runs-on: ubuntu-latest
20
20
+
steps:
21
21
+
- uses: actions/checkout@v4
22
22
+
- uses: actions/configure-pages@v5
23
23
+
- run: npm ci
24
24
+
- run: npm run build
25
25
+
- run: rm -rf node_modules
26
26
+
- uses: actions/upload-pages-artifact@v3
27
27
+
with:
28
28
+
path: .
29
29
+
- id: deployment
30
30
+
uses: actions/deploy-pages@v4