RepositoryStatus #31
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
# Builds and publishes the documentation website to gh-pages branch | |
name: RepositoryStatus | |
on: | |
schedule: | |
- cron: '00 18 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: pandoc | |
run: sudo apt-get install -y pandoc | |
- name: Run RepositoryStatus | |
env: | |
CREDENTIAL_GITHUB: ${{ secrets.CREDENTIAL_GITHUB }} | |
CREDENTIAL_GOOGLE: ${{ secrets.CREDENTIAL_GOOGLE }} | |
run: | | |
pip install -r requirements.txt | |
python3 main.py |