Fixed artifact paths
This commit is contained in:
parent
454b4c00fc
commit
bff82c3a7c
1 changed files with 6 additions and 8 deletions
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
|
@ -57,13 +57,13 @@ jobs:
|
||||||
uses: ./.github/actions/make-windows-release
|
uses: ./.github/actions/make-windows-release
|
||||||
with:
|
with:
|
||||||
version-number: ${{ github.event.inputs.versionNumber }}
|
version-number: ${{ github.event.inputs.versionNumber }}
|
||||||
output-file: polaris.msi
|
output-file: Polaris_${{ github.event.inputs.versionNumber }}.msi
|
||||||
- name: Upload installer
|
- name: Upload installer
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
name: Polaris_${{ github.event.inputs.versionNumber }}.msi
|
name: windows-artifact
|
||||||
path: polaris.msi
|
path: Polaris_${{ github.event.inputs.versionNumber }}.msi
|
||||||
|
|
||||||
linux:
|
linux:
|
||||||
name: Linux
|
name: Linux
|
||||||
|
@ -79,13 +79,13 @@ jobs:
|
||||||
uses: ./.github/actions/make-linux-release
|
uses: ./.github/actions/make-linux-release
|
||||||
with:
|
with:
|
||||||
version-number: ${{ github.event.inputs.versionNumber }}
|
version-number: ${{ github.event.inputs.versionNumber }}
|
||||||
output-file: polaris.tar.gz
|
output-file: Polaris_${{ github.event.inputs.versionNumber }}.tar.gz
|
||||||
- name: Upload release
|
- name: Upload release
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
name: Polaris_${{ github.event.inputs.versionNumber }}.tar.gz
|
name: linux-artifact
|
||||||
path: polaris.tar.gz
|
path: Polaris_${{ github.event.inputs.versionNumber }}.tar.gz
|
||||||
|
|
||||||
create_release:
|
create_release:
|
||||||
name: Create Github Release
|
name: Create Github Release
|
||||||
|
@ -97,8 +97,6 @@ jobs:
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
- name: Troublshooting
|
|
||||||
run: ls -R
|
|
||||||
- name: Make Github release
|
- name: Make Github release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Add table
Reference in a new issue