Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/nylssoft/MynaJukeBox
Browse files Browse the repository at this point in the history
  • Loading branch information
nylssoft committed Jul 21, 2024
2 parents e42a3d9 + cd0d7e3 commit e5a033e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: MSBuild
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup msbuild
uses: microsoft/setup-msbuild@v2
- name: Build
run: msbuild /m /p:Configuration=Release JukeBoxPlayer
- name: Copy MSI
run: Copy-Item "bin/Release/MynaJukeBox.msi" "MynaJukeBox-win-x86-${{ github.ref_name }}.msi"
- name: Create github release
run: gh release create "${{ github.ref_name }}" "MynaJukeBox-win-x86-${{ github.ref_name }}.msi"

0 comments on commit e5a033e

Please sign in to comment.