Adjusted main workflow file
added new Releases workflow
This commit is contained in:
parent
06e52accb4
commit
fb9f96d2b0
2 changed files with 23 additions and 89 deletions
20
.github/workflows/releases.yml
vendored
Normal file
20
.github/workflows/releases.yml
vendored
Normal 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 }
|
||||
Loading…
Add table
Add a link
Reference in a new issue