Skip to content

Commit

Permalink
Fixed artifact paths
Browse files Browse the repository at this point in the history
  • Loading branch information
agersant committed Sep 29, 2024
1 parent f188b29 commit d06ad07
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ jobs:
uses: ./.github/actions/make-windows-release
with:
version-number: ${{ github.event.inputs.versionNumber }}
output-file: polaris.msi
output-file: Polaris_${{ github.event.inputs.versionNumber }}.msi
- name: Upload installer
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: Polaris_${{ github.event.inputs.versionNumber }}.msi
path: polaris.msi
name: windows-artifact
path: Polaris_${{ github.event.inputs.versionNumber }}.msi

linux:
name: Linux
Expand All @@ -78,13 +78,13 @@ jobs:
uses: ./.github/actions/make-linux-release
with:
version-number: ${{ github.event.inputs.versionNumber }}
output-file: polaris.tar.gz
output-file: Polaris_${{ github.event.inputs.versionNumber }}.tar.gz
- name: Upload release
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: Polaris_${{ github.event.inputs.versionNumber }}.tar.gz
path: polaris.tar.gz
name: linux-artifact
path: Polaris_${{ github.event.inputs.versionNumber }}.tar.gz

create_release:
name: Create Github Release
Expand All @@ -96,8 +96,6 @@ jobs:
uses: actions/download-artifact@v4
with:
merge-multiple: true
- name: Troublshooting
run: ls -R
- name: Make Github release
uses: softprops/action-gh-release@v2
with:
Expand Down

0 comments on commit d06ad07

Please sign in to comment.