-
-
Notifications
You must be signed in to change notification settings - Fork 0
92 lines (76 loc) · 2.23 KB
/
Copy pathpages.yml
File metadata and controls
92 lines (76 loc) · 2.23 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
name: Deploy playground to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout OWD client (workspace deps)
uses: actions/checkout@v4
with:
repository: owdproject/client
path: client
submodules: recursive
- name: Checkout kit-tailwind
uses: actions/checkout@v4
with:
repository: owdproject/kit-tailwind
path: client/packages/kit-tailwind
- name: Checkout kit-primevue
uses: actions/checkout@v4
with:
repository: owdproject/kit-primevue
path: client/packages/kit-primevue
- name: Checkout module-fs
uses: actions/checkout@v4
with:
repository: owdproject/module-fs
path: client/packages/module-fs
- name: Checkout theme-nova
uses: actions/checkout@v4
with:
repository: owdproject/theme-nova
path: client/themes/theme-nova
- name: Overlay this app-debug repo
uses: actions/checkout@v4
with:
path: client/apps/app-debug
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm i -g --force corepack@latest && corepack enable
- name: Install monorepo dependencies
working-directory: client
run: pnpm install --no-frozen-lockfile
- name: Prepare module and playground
working-directory: client/apps/app-debug
run: pnpm run dev:prepare
- name: Generate static playground
working-directory: client/apps/app-debug
run: pnpm run dev:generate
env:
NUXT_APP_BASE_URL: /app-debug/
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: client/apps/app-debug/playground/.output/public
deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4