We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8389e4 commit 5b85e26Copy full SHA for 5b85e26
.github/workflows/docs.yml
@@ -2,25 +2,28 @@ name: Build and Deploy
2
on:
3
push:
4
branches:
5
- - master
+ - main
6
+
7
jobs:
8
build-and-deploy:
9
concurrency: ci-${{ github.ref }}
10
runs-on: ubuntu-latest
11
steps:
12
- name: Checkout 🛎️
- uses: actions/checkout@v3
13
+ uses: actions/checkout@v4
14
- - uses: actions/setup-node@v3
15
+ - uses: actions/setup-node@v4
16
with:
- node-version: '20'
17
+ node-version: 22
18
19
- run: npm install --global pnpm
20
- run: pnpm install
21
- run: pnpm build
22
23
- name: Deploy 🚀
- uses: JamesIves/github-pages-deploy-action@v4.7.3
24
+ uses: JamesIves/github-pages-deploy-action@v4
25
26
branch: gh-pages
27
folder: apps/docs/dist
28
+ clean-exclude: |
29
+ v5
0 commit comments