-
Notifications
You must be signed in to change notification settings - Fork 204
39 lines (36 loc) · 1.12 KB
/
build-showcases-index.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
name: Build Showcases Index
on:
push:
branches:
- master
paths:
- "showcases/**"
workflow_dispatch: {}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO_NAME: ${{ github.event.repository.name }}
jobs:
build-index:
name: Build Showcase Index
# There is currently no way to limit workflow dispatch to only allow default branch
# so we need to restrict it here
# See https://github.community/t/limit-branch-for-workflow-dispatch/122099
if: github.ref == 'refs/heads/master' && github.repository == 'finos/legend'
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/[email protected]
with:
token: ${{ secrets.FINOS_GITHUB_TOKEN }}
- name: Configure Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "FINOS Administrator"
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 16
- name: Update Showcases Index
run: |
npm install
npm run update:showcases-index