AmagnoVirtualPrinter/.github/workflows/releases.yml
Marco Batzinger fb9f96d2b0 Adjusted main workflow file
added new Releases workflow
2021-03-09 15:23:28 +01:00

20 lines
No EOL
390 B
YAML

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 }