Files
bots/.gitea/workflows/releases.yaml
Camille Frantz 54bc1a2a29
All checks were successful
DogFacts / deploy (push) Successful in 34s
check every 8 hours instead
2025-07-02 03:12:30 -05:00

28 lines
847 B
YAML

name: ReleaseBot
on:
schedule:
- cron: '18 */8 * * *'
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run release_check.py
run:
python release_check.py
env:
BOTS_ENDPOINT: ${{ secrets.BOTS_ENDPOINT }}
PUSHOVER_ENDPOINT: ${{ secrets.PUSHOVER_ENDPOINT }}
PUSHOVER_USER_TOKEN: ${{ secrets.PUSHOVER_USER_TOKEN }}
PUSHOVER_BOTS_TOKEN: ${{ secrets.PUSHOVER_BOTS_TOKEN }}
REPO_LINKS: ${{ secrets.REPO_LINKS }}