Skip to content

Commit

Permalink
Init github release action
Browse files Browse the repository at this point in the history
  • Loading branch information
U-C-S committed Jan 31, 2024
1 parent 762f255 commit cefca3f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Release

on:
push

jobs:
build:
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore
run: dotnet restore
- name: Build
run: .\Utils\build.ps1
# - name: Release
# uses: softprops/[email protected]
# with:
# draft: true
# files: build_installer/LenovoLegionToolkitSetup.exe
# fail_on_unmatched_files: true
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: Hurl_Installer
path: ./Utils/Hurl_Installer.exe

0 comments on commit cefca3f

Please sign in to comment.