generated from sourcecred/template-instance
-
Notifications
You must be signed in to change notification settings - Fork 5
47 lines (41 loc) · 1.45 KB
/
generate-instance.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
name: Generate Cred Instance
on:
# Trigger on merging to master.
push:
branches:
- main
# As well as every 24 hours (at 0:00 UTC).
schedule:
- cron: 0 0 * * *
jobs:
GenerateCredInstance:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
persist-credentials: false # Required to make github pages deployment work correctly
- name: Cache Data # Cache SourceCred Data, invalidating if any of the config changes or the SC version is updated
uses: actions/[email protected]
with:
path: '**/cache'
key: SC-${{ runner.os }}-${{ hashFiles('**/config.json', '**/sourcecred.json', '**/yarn.lock') }}
- name: Install Packages 🔧
run: yarn --frozen-lockfile
- name: Load Data and Compute Cred 🧮
run: |
yarn sourcecred go
yarn sourcecred analysis
env:
SOURCECRED_GITHUB_TOKEN: ${{ secrets.SOURCECRED_GITHUB_TOKEN }}
SOURCECRED_DISCORD_TOKEN: ${{ secrets.SOURCECRED_DISCORD_TOKEN }}
- name: Generate Frontend 🏗
run: |
yarn sourcecred site
rm -rf ./site/{output,data,config,sourcecred.json}
cp -r ./{output,data,config,sourcecred.json,package.json,yarn.lock} ./site/
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: site