From b05fafeba1c2db73bf5162a5d0c9c4aa118ffcf2 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 14 Nov 2023 14:06:51 -0800 Subject: [PATCH] chore: test action --- .github/workflows/fetch-artist-charts.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/fetch-artist-charts.yaml diff --git a/.github/workflows/fetch-artist-charts.yaml b/.github/workflows/fetch-artist-charts.yaml new file mode 100644 index 00000000..b76e4bda --- /dev/null +++ b/.github/workflows/fetch-artist-charts.yaml @@ -0,0 +1,16 @@ +name: Fetch weekly artist charts +on: + workflow_dispatch: + schedule: + - cron: '00 09 * * 5' +jobs: + refresh-feed: + runs-on: ubuntu-latest + steps: + - name: Fetch API Data 📦 + 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'