8000 updated biscuit · dmotz/GildedGauge@823a4d3 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

gild

gild #944

Workflow file for this run

name: gild
on:
schedule:
- cron: '0 4 * * 2-6'
workflow_dispatch:
jobs:
rebuild:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- uses: DeLaGuardo/setup-clojure@12.5
with:
lein: 2.11.2
- name: setup
run: |
cd $GITHUB_WORKSPACE
lein deps
- name: fetch
run: ./scripts/get-rankings.sh
- name: commit
run: |
if [[ `git status --porcelain --untracked-files=no` ]]; then
git config --global user.email "dan@oxism.com"
git config --global user.name "Dan Motzenbecker"
git add src/gilded_gauge/rankings.cljs
git commit -m 'update ranking'
git push origin master
npx distilla
fi
0