Skip to content

Build

Build #1344

Workflow file for this run

name: Build
on:
schedule:
- cron: '0 0/4 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/[email protected]
with:
python-version: 3.12
- name: Install dependencies
run: pip3 install -r requirements.txt
- name: Build
run: python3 main.py
env:
GH_TOKEN: ${{ secrets.GH_PERSONAL_TOKEN }}
CURSEFORGE_API_KEY: ${{ secrets.CURSEFORGE_API_KEY }}