Galaxy Zoo Poster #4901
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: Galaxy Zoo Poster | |
on: | |
schedule: | |
# runs | |
- cron: '0 * * * *' | |
jobs: | |
run-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set Up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Running Bot | |
env: | |
USRNAME: ${{ secrets.USRNAME }} | |
BLU_CODE: ${{ secrets.BSKY_CODE }} | |
CAT_PATH: ${{ secrets.CAT_PATH }} | |
run: python gz-bot.py |