Report Update #4
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: Report Update | |
on: | |
schedule: | |
# Second day of the month UTC | |
- cron: '0 0 2 * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.12 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
- name: Poetry install | |
run: poetry install --no-dev --no-root | |
- name: Run report | |
run: | | |
DATE=$(date +"%d-%m-%Y") | |
FIRST_DAY=$(date -d "-1 month" +%Y-%m-01) | |
echo Running report for $FIRST_DAY - $DATE | |
poetry run python main.py ${{secrets.PROPERTY_ID}} $FIRST_DAY $DATE | |
env: | |
SERVICE_ACCOUNT_CREDENTIALS: ${{ secrets.SERVICE_ACCOUNT_CREDENTIALS }} | |
PROPERTY_ID: ${{ secrets.PROPERTY_ID }} | |
- name: Commit and push changes | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Codaqui Bot" | |
git add . | |
DATE=$(date +"%d-%m-%Y") | |
FIRST_DAY=$(date -d "-1 month" +%Y-%m-01) | |
git commit -m "Update report for $FIRST_DAY - $DATE" |