26 lines
830 B
YAML
26 lines
830 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
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
- name: Fetch
|
|
uses: JamesIves/fetch-api-data-action@v2
|
|
with:
|
|
endpoint: https://ws.audioscrobbler.com/2.0/?method=user.getweeklyartistchart&user=coryd_&api_key=${{ secrets.LASTFM_API_KEY }}&format=json
|
|
configuration: '{ "method": "GET" }'
|
|
save-location: 'src/_data/json'
|
|
save-name: 'weekly-artist-charts.json'
|
|
- name: Commit
|
|
uses: stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: Update artist charts for the week.
|