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
|
- name: Build solution
|
||||||
run: msbuild $env:solution /t:Rebuild /p:Configuration=$env:configuration
|
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
|
- name: Upload artifacts
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: artifacts
|
name: installer
|
||||||
|
path: AmagnoPrinterInstaller.msi
|
||||||
|
- name: Upload artifacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: files
|
||||||
path: files/**/*
|
path: files/**/*
|
||||||
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
|
|
@ -20,12 +20,7 @@ jobs:
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: artifacts
|
name: installer
|
||||||
path: Files
|
|
||||||
|
|
||||||
- name: Create msi from PowerShell Script
|
|
||||||
run: |
|
|
||||||
"$Env:GITHUB_WORKSPACE\create_msi.ps1"
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
uses: ncipollo/release-action@v1.7.3
|
uses: ncipollo/release-action@v1.7.3
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue