Build #651
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: 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 |