This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/.github/workflows/fetch-artist-charts.yaml

27 lines
993 B
YAML

name: Fetch weekly artist charts
on:
workflow_dispatch:
schedule:
- cron: '00 09 * * 5'
jobs:
FetchArtistCharts:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout out this repo
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Fetch current artist charts
run: |-
data=$(curl 'https://ws.audioscrobbler.com/2.0/?method=user.getweeklyartistchart&user=coryd_&api_key=${{ secrets.LASTFM_API_KEY }}&format=json') \
charts=$(src/_data/json/weekly-artist-charts.json | jq --argjson jq_data "${data}" '.charts += [$jq_data]') \
echo $charts > src/_data/json/weekly-artist-charts.json
- name: Commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Update artist charts for the week.
commit_user_name: cdransf
commit_user_email: hi@coryd.dev
commit_author: Cory Dransfeldt