-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (84 loc) · 2.63 KB
/
Copy pathgithub-pages.yml
File metadata and controls
100 lines (84 loc) · 2.63 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
88
89
90
91
92
93
94
95
96
97
98
99
100
name: Build and Deploy
on:
# Runs on pushes targeting the main branch
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# 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
jobs:
build:
name: Build Application
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 11.1.0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Setup Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Cache APT packages
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: build-essential libudev-dev libusb-1.0-0-dev
version: 1.0
- name: Install dependencies
env:
PYTHON: python3.11
run: pnpm install --frozen-lockfile
- name: Build application
run: pnpm run wallet:build:naultcore:preview
- name: Normalize Angular browser output
run: |
find dist -maxdepth 4 -print
index_path="$(find dist -type f -iname 'index*.html' -print -quit)"
echo "Angular index: ${index_path:-missing}"
if [ -n "$index_path" ]; then
artifact_root="${index_path%/*}"
if [ "$artifact_root" != "dist" ]; then
cp -R "$artifact_root"/. dist/
fi
if [ ! -f dist/index.html ]; then
cp "$index_path" dist/index.html
fi
fi
node scripts/normalize-pages-artifact.js
- name: Verify PWA preview artifact
run: pnpm run verify:pwa:preview
- name: Verify canonical branding assets
run: pnpm run verify:branding
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload dist folder
path: './dist'
# Deployment job
deploy:
name: Deploy to GitHub Pages
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4