-
Notifications
You must be signed in to change notification settings - Fork 0
85 lines (71 loc) · 2.07 KB
/
cd.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
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
name: Continuous Delivery
on:
push:
branches:
- main
- next
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Changes and Release
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
outputs:
published: ${{ steps.printoutputs.outputs.published }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 9.0.0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- run: pnpm install --no-frozen-lockfile
- name: Package
run: pnpm package
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Print Changesets Outputs
run: echo "${{ toJson(steps.changesets.outputs) }}"
- id: printoutputs
##if has changeset build and deploy
run: echo "published=${{ steps.changesets.outputs.hasChangesets }}" >> "$GITHUB_OUTPUT"
- name: Build
if: ${{ steps.changesets.outputs.hasChangesets == 'true' }}
env:
BASE_PATH: "/${{ github.event.repository.name }}"
env: production
run: pnpm build
- name: Upload Artifacts
if: ${{ steps.changesets.outputs.hasChangesets == 'true' }}
uses: actions/upload-pages-artifact@v2
with:
path: "apps/documentation/build/"
deploy:
if: ${{ needs.release.outputs.published == 'true' }}
name: Documentation Deployment
needs: release
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v2