mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 22:55:52 -06:00
22 lines
413 B
YAML
22 lines
413 B
YAML
name: Update Branch
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- test*
|
|
|
|
jobs:
|
|
build-runspace:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
- name: Create local changes
|
|
run: |
|
|
powershell.exe -f Compile.ps1
|
|
- uses: stefanzweifel/git-auto-commit-action@v4.16.0
|
|
with:
|
|
commit_message: Compile Winutil
|