Skip to content

Update Jobify

Update Jobify #10

name: Update Jobify
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
update-jobify:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run jobify script
run: poetry run jobify
env:
FIREBASE_SERVICE_ACCOUNT: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}