work in improving install control flow #17
Workflow file for this run
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: Update Branch | |
on: | |
push: | |
branches: | |
- main | |
- test* | |
jobs: | |
build-runspace: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Compile project | |
shell: pwsh | |
run: | | |
Set-ExecutionPolicy Bypass -Scope Process -Force; ./Compile.ps1 | |
continue-on-error: false # Directly fail the job on error, removing the need for a separate check | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Compile Winutil | |
if: success() |