bluefin-usdc #12378
This file contains hidden or 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: bluefin-usdc | |
on: | |
push: | |
paths: | |
- "bluefin-usdc.js" | |
schedule: | |
- cron: "* * * * *" | |
jobs: | |
bluefin-usdc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ hashFiles('**/package-lock.json') }} | |
- run: npm ci | |
- run: node bluefin-usdc.js | |
- run: | | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions" | |
git add bluefin-usdc.json -f | |
git commit -m "Update bluefin-usdc.json" | |
git fetch --all | |
git checkout gh-pages | |
git checkout main bluefin-usdc.json | |
git add bluefin-usdc.json -f | |
git commit --amend -m "Update data" | |
git push --force |