Generate Cred Instance #1212
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate Cred Instance | |
on: | |
# Trigger on merging to main. | |
push: | |
branches: | |
- main | |
# As well as every 24 hours (at 0:00 UTC). | |
schedule: | |
- cron: 0 0 * * * | |
jobs: | |
GenerateCredInstance: | |
runs-on: ubuntu-latest | |
env: | |
NODE_OPTIONS: --max_old_space_size=14000 | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
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/cache@v4.0.2 | |
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/github-pages-deploy-action@v4.6.3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
folder: site |