forked from janus-idp/backstage-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (47 loc) · 1.3 KB
/
push-website.yaml
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
name: Push website
# Do not abstract the build step into a separate workflow file, as it will run into pathname issues
on:
push:
branches:
- main
paths:
- '**/README.md'
concurrency:
group: push-website
cancel-in-progress: true
jobs:
build-website:
name: Build website
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
repository: janus-idp/janus-idp.github.io
persist-credentials: false
fetch-depth: 0
- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --prefer-offline --frozen-lockfile
- name: Run Build
run: pnpm run build --filter=website
dispatch-website:
name: Dispatch website
needs:
- build-website
runs-on: ubuntu-latest
steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.PAT }}
repository: janus-idp/janus-idp.github.io
event-type: deploy-website
client-payload: '{"github": ${{ toJson(github) }}}'