Merge branch 'main' of https://github.com/Prem-ium/Spotify-Wrapped-365 #11
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: Scheduled Spotify Wrapped 365 Job | |
on: | |
schedule: | |
- cron: '0 */1 * * *' | |
push: | |
branches: | |
- main | |
jobs: | |
run-script: | |
runs-on: ubuntu-latest | |
env: | |
CLIENT_ID: ${{ secrets.CLIENT_ID }} | |
SECRET_CLIENT_ID: ${{ secrets.SECRET_CLIENT_ID }} | |
REDIRECT_URL: ${{ secrets.REDIRECT_URL }} | |
USERNAME: ${{ secrets.USERNAME }} | |
AUTH_CACHE: ${{ secrets.AUTH_CACHE }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Run main.py | |
run: python main.py | |
# Figure out how to refresh the token & assign refreshed token to AUTH_CACHE in GitHub secrets |