-
Notifications
You must be signed in to change notification settings - Fork 5
44 lines (43 loc) · 1.06 KB
/
publish.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
on:
push:
branches:
- main
jobs:
build:
name: "DIDComm Demo Public Page Build & Deploy"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
name: "Use Node.js 18"
with:
node-version: "18.x"
- name: "Install packages"
run: npm ci
- name: "Build & Pack"
run: npm run build
- name: "Bundle index page"
run: cp public/index.html bin/
- name: "Fixup permissions"
run: |
chmod -c -R +rX "bin/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: "Publish Github Pages"
uses: actions/upload-pages-artifact@v2
with:
path: bin
# Deployment job
deploy:
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
runs-on: ubuntu-latest
needs: build
permissions:
id-token: write
pages: write
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2