Daily job #35
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: Daily job | |
on: | |
workflow_dispatch: {} | |
schedule: | |
# every day at 3am | |
- cron: '0 3 * * *' | |
env: | |
NODE_VERSION: 20 | |
PNPM_VERSION: 8.6.7 | |
jobs: | |
update-movies: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '${{ env.NODE_VERSION }}' | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: '${{ env.PNPM_VERSION }}' | |
run_install: | | |
- recursive: true | |
args: [--frozen-lockfile, --strict-peer-dependencies] | |
- name: Fetch movies info | |
run: | | |
pnpm letterboxd:update | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update movies | |
- name: Fetch records info | |
run: | | |
pnpm discogs:download \ | |
--api-token "${{ secrets.DISCOGS_API_KEY}}" | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update records | |
- name: Checkout ledger | |
uses: actions/checkout@v3 | |
with: | |
repository: ngalaiko/ledger | |
token: ${{ secrets.GH_PAT }} | |
path: 'ledger' | |
ref: 'master' | |
- name: Setup hledger | |
uses: ngalaiko/setup-hledger@v1 | |
- name: Fetch list | |
run: | | |
pnpm ledger:restaurants-and-cafes \ | |
--file "$GITHUB_WORKSPACE/ledger/main.ledger" | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update Restaurants and Cafes |