Skip to content

Commit

Permalink
package names changed, also intel macos was added
Browse files Browse the repository at this point in the history
  • Loading branch information
verhas committed Oct 3, 2024
1 parent a8de03a commit 3819e13
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Upload Package Artifact
uses: actions/upload-artifact@v3
with:
name: ur-package-ubuntu
name: linux-x64
path: |
output/*.deb
windows-latest:
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Upload Package Artifact
uses: actions/upload-artifact@v3
with:
name: ur-package-windows
name: windows-x64
path: |
output/*.exe
output/*.msi
Expand All @@ -49,6 +49,21 @@ jobs:
- name: Upload Package Artifact
uses: actions/upload-artifact@v3
with:
name: ur-package-macos
name: macos-arm64
path: |
output/*.pkg
output/*.pkg
macos-13:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with: {java-version: '21', distribution: temurin}
- name: Package application
run: sh ./package.sh
- name: Upload Package Artifact
uses: actions/upload-artifact@v3
with:
name: macos-x64
path: |
output/*.pkg

0 comments on commit 3819e13

Please sign in to comment.