Refetch podcasts episodes (Spotify) #61
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
# βοΈ Description: | |
# This action will check spotify API and check for the last podcasts episodes and add them to the database | |
# Should be run on a schedule, e.g. every day at 1am and update the metadata for 10 repos at a time | |
name: Refetch podcasts episodes (Spotify) | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
jobs: | |
refetch-podcasts-episodes: | |
name: Refetch podcasts episodes | |
runs-on: ubuntu-latest | |
timeout-minutes: 4 | |
steps: | |
- name: π¦ Checkout project repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: π¦ Setupbun + install deps | |
uses: ./.github/actions/setup-bun-and-install | |
- name: πββοΈ Refetch podcasts episodes | |
run: bun run refetch-podcasts-episodes | |
env: | |
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }} | |
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL: ${{ secrets.NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL }} | |
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL: ${{ secrets.NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL }} | |
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }} | |
XATA_BRANCH: ${{ secrets.XATA_BRANCH }} | |
XATA_API_KEY: ${{ secrets.XATA_API_KEY }} | |
G_API_TOKEN: ${{ secrets.G_API_TOKEN }} | |
SPOTIFY_CLIENT_ID: ${{ secrets.SPOTIFY_CLIENT_ID }} | |
SPOTIFY_CLIENT_SECRET: ${{ secrets.SPOTIFY_CLIENT_SECRET }} |