-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (52 loc) · 1.8 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
48
49
50
51
52
53
54
55
56
57
58
name: Generate Cred Instance
on:
# Trigger on merging to master.
push:
branches:
- master
# As well as every 24 hours (at 0:00 UTC).
schedule:
- cron: 0 0 * * *
jobs:
GenerateCredInstance:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false # Required to make github pages deployment work correctly
- uses: actions/setup-node@v3.6.0
with:
node-version: "18"
- name: Cache Data # Cache SourceCred Data, invalidating if any of the config changes or the SC version is updated
uses: actions/cache@v3
with:
path: "**/cache"
key: SC-${{ runner.os }}-V3-${{ hashFiles('**/config.json', '**/sourcecred.json', '**/yarn.lock') }}
- name: Install Packages 🔧
run: |
yarn --frozen-lockfile
- name: Load Data and Compute Cred 🧮
run: |
yarn load
mkdir -p output/contributions/sourcecred/discord
yarn sourcecred contributions
yarn sourcecred credequate
node scripts/wolf-turtle-bear.js
env:
SOURCECRED_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SOURCECRED_DISCORD_TOKEN: ${{ secrets.SOURCECRED_DISCORD_TOKEN }}
NODE_OPTIONS: "--max-old-space-size=8192"
- name: Generate Frontend 🏗
env:
NODE_OPTIONS: "--max-old-space-size=8192"
run: |
yarn sourcecred site
rm -rf ./site/{output,data,config,sourcecred.json}
cp -r ./{output,data,config,sourcecred.json,package.json} ./site/
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.4.2
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: site
SINGLE-COMMIT: true