Always create the setup
This commit is contained in:
parent
9611eb6522
commit
19f00c3b80
2 changed files with 10 additions and 8 deletions
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
|
|
@ -28,9 +28,16 @@ jobs:
|
|||
|
||||
- name: Build solution
|
||||
run: msbuild $env:solution /t:Rebuild /p:Configuration=$env:configuration
|
||||
|
||||
- name: Create msi from PowerShell Script
|
||||
run: |
|
||||
"$Env:GITHUB_WORKSPACE\create_msi.ps1"
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: artifacts
|
||||
name: installer
|
||||
path: AmagnoPrinterInstaller.msi
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: files
|
||||
path: files/**/*
|
||||
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
|
|
@ -20,12 +20,7 @@ jobs:
|
|||
- name: Download artifacts
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: artifacts
|
||||
path: Files
|
||||
|
||||
- name: Create msi from PowerShell Script
|
||||
run: |
|
||||
"$Env:GITHUB_WORKSPACE\create_msi.ps1"
|
||||
name: installer
|
||||
- name: Create Release
|
||||
uses: ncipollo/release-action@v1.7.3
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue