-
Notifications
You must be signed in to change notification settings - Fork 4
90 lines (75 loc) · 2.46 KB
/
deploy.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
86
87
88
89
90
name: Deploy
on:
workflow_dispatch:
push:
branches:
- production
- alpha
- beta
- staging
- next
- legacy
paths:
- 'packages/dialtone/**'
- 'packages/dialtone-tokens/**'
- 'apps/dialtone-documentation/**'
env:
HUSKY: 0
jobs:
deploy:
concurrency: ${{ github.workflow }}-${{ github.ref }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18 ]
defaults:
run:
working-directory: ${{ github.workspace }}
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v7
# Will prevent the rest of the steps from running on fail
- name: Check if user is a dialpad member
uses: octokit/request-action@v2.1.0
with:
route: GET /orgs/dialpad/members/${{ github.actor }}
env:
GITHUB_TOKEN: ${{ secrets.DIALTONE_CI_TOKEN }}
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build library and docsite (${{ steps.branch-name.outputs.current_branch }})
if: ${{ github.ref != 'refs/heads/production' }}
env:
VUEPRESS_BASE_URL: /${{ steps.branch-name.outputs.current_branch }}/
run: npx nx run --verbose dialtone-documentation:build
- name: Deploy to GitHub Pages (${{ steps.branch-name.outputs.current_branch }})
if: ${{ github.ref != 'refs/heads/production' }}
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:
branch: gh-pages
folder: apps/dialtone-documentation/docs/.vuepress/dist
target-folder: ${{ steps.branch-name.outputs.current_branch }}
- name: Build library and docsite
if: ${{ github.ref == 'refs/heads/production' }}
run: npx nx run --verbose dialtone-documentation:build
- name: Deploy to GitHub Pages
if: ${{ github.ref == 'refs/heads/production' }}
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:
branch: gh-pages
folder: apps/dialtone-documentation/docs/.vuepress/dist
clean-exclude: |
deploy-previews
legacy
staging
next