Adjusted main workflow file

added new Releases workflow
This commit is contained in:
Marco Batzinger 2021-03-09 15:23:28 +01:00
parent 06e52accb4
commit fb9f96d2b0
2 changed files with 23 additions and 89 deletions

20
.github/workflows/releases.yml vendored Normal file
View file

@ -0,0 +1,20 @@
name: Releases
on:
push:
tags:
- '*'
jobs:
build:
runs-on: windows-latest
steps:
- name: Create msi from PowerShell Script
run: pwsh -command ".\$GITHUB_WORKSPACE\create_msi.ps1"
- name: Create Release
uses: ncipollo/release-action@v1.7.3
with:
artifact: ./AmagnoPrinterInstaller.msi
token: ${{ secrets.GITHUB_TOKEN }