Skip to content

Build

Build #210

Workflow file for this run

name: Build
run-name: Build
on:
workflow_dispatch:
schedule:
- cron: '0 18 * * *'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 180
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
- name: build.sh
run: bash scripts/build.sh
- name: Push
run: |
git config user.email ${{ vars.GIT_EMAIL }}
git config user.name ${{ vars.GIT_USERNAME }}
git add .
git diff-index --quiet HEAD || git commit -m "CI: build"
git push -q