Update date to align with the latest fix #154
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: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
dotnet build --configuration Release | |
Compress-Archive bin\Release\*\*,*.bat,stream.sh,vtxmenu.ini,reset\,sensors\ OpenIPC-Configurator.zip | |
- name: Upload | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: latest | |
files: OpenIPC-Configurator.zip |