Skip to content

Build

Build #1269

Workflow file for this run

name: Build
on:
push:
branches:
- main
schedule:
- cron: '0 8 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run script
run: python script.py
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GIT_CONFIG_NAME: Code for IATI bot
GIT_CONFIG_EMAIL: [email protected]
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: out
CLEAN: true
SILENT: true
SINGLE_COMMIT: true