Backup New Music Friday Dance #67
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: Backup New Music Friday Dance | |
on: | |
schedule: | |
- cron: '15 8 * * 5' | |
workflow_dispatch: | |
jobs: | |
New-Music-Friday-Dance-Backup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/[email protected] | |
- name: 🐍 Setup Python Environment | |
uses: actions/[email protected] | |
with: | |
python-version: 3.12.0 | |
- name: 💻 Install Requirements | |
run: pip install -r requirements.txt | |
- name: 💾 Backup Playlist | |
run: python nmf_dance.py | |
env: | |
CLIENT_ID: ${{ secrets.CLIENT_ID }} | |
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} | |
REFRESH_TOKEN: ${{ secrets.REFRESH_TOKEN }} | |
NEW_MUSIC_FRIDAY_DANCE_ID: ${{ secrets.NEW_MUSIC_FRIDAY_DANCE_ID }} | |
USER_ID: ${{ secrets.USER_ID }} | |
- name: 📝 Commit updated JSON | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add json/dance/${{ env.jsn }} | |
git commit -m "${{ env.jsn }} automatic update" -a | |
- name: Push updated JSON | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
# run-if-failed: | |
# runs-on: ubuntu-latest | |
# needs: [execute-cron] | |
# if: always() && (needs.execute-cron.result == 'failure') | |
# steps: | |
# - name: 😴 Wait until retry | |
# uses: juliangruber/[email protected] | |
# with: | |
# time: 10m | |
# - name: Checkout Code | |
# uses: actions/[email protected] | |
# - name: 🐍 Setup Python Environment | |
# uses: actions/[email protected] | |
# with: | |
# python-version: 3.12.0 | |
# - name: 💻 Install Requirements | |
# run: pip install -r requirements.txt | |
# - name: 💾 Backup Playlist | |
# run: python nmf_dance.py | |
# env: | |
# CLIENT_ID: ${{ secrets.CLIENT_ID }} | |
# CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} | |
# REFRESH_TOKEN: ${{ secrets.REFRESH_TOKEN }} | |
# NEW_MUSIC_FRIDAY_DANCE_ID: ${{ secrets.NEW_MUSIC_FRIDAY_DANCE_ID }} | |
# USER_ID: ${{ secrets.USER_ID }} | |
# - name: 📝 Commit updated JSON | |
# run: | | |
# git config --local user.email "[email protected]" | |
# git config --local user.name "GitHub Action" | |
# git add json/dance/${{ env.jsn }} | |
# git commit -m "${{ env.jsn }} automatic update" -a | |
# - name: Push updated JSON | |
# uses: ad-m/github-push-action@master | |
# with: | |
# github_token: ${{ secrets.GITHUB_TOKEN }} |