This repository has been archived by the owner on Jan 2, 2025. It is now read-only.
Initial commit #1
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: Run URL Checker | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Pull latest changes | |
run: git pull origin main | |
- name: Install dependencies | |
run: | | |
pip install requests tqdm bs4 | |
- name: Run URL checker script | |
run: | | |
python audio_links.py | |
python audio_playlist.py | |
python check_links.py | |
python cover_image.py | |
- name: Commit and Push changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add . | |
git commit -m "Initial commit" | |
git push |