Skip to content

Build

Build #645

Workflow file for this run

name: Build
on:
workflow_dispatch:
schedule:
- cron: "0 22 * * *"
permissions: write-all
jobs:
build:
name: Run Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
.\build.ps1
# Pushing the sources and list to main
git config --global user.email "[email protected]"
git config --global user.name "HotCakeX"
git add --all
git commit -m "updating sources and list"
git push
shell: pwsh