Report Update #13
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: | |
# First day of the month at 2:00 UTC is on BRL last day of the month at 23:00 | |
- cron: '0 2 1 * *' | |
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" +01-%m-%Y) | |
echo Running report for $FIRST_DAY - $DATE | |
echo $SERVICE_ACCOUNT_CREDENTIALS > service_account.json | |
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 "contato@codaqui.dev" | |
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" | |
git push origin HEAD:main |