This commit is contained in:
Craig Raw 2022-06-07 15:01:00 +02:00
parent 3ed15ffefe
commit c780a8d944
2 changed files with 3 additions and 2 deletions

View file

@ -28,10 +28,10 @@ jobs:
- name: Build with Gradle
run: ./gradlew jpackage
- name: Package zip distribution
if: ${{ runner.os == 'Windows' }}
if: ${{ runner.os == 'Windows' || runner.os == 'macOS' }}
run: ./gradlew packageZipDistribution
- name: Package tar distribution
if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }}
if: ${{ runner.os == 'Linux' }}
run: ./gradlew packageTarDistribution
- name: Upload Artifacts
uses: actions/upload-artifact@v2

View file

@ -245,6 +245,7 @@ task packageZipDistribution(type: Zip) {
destinationDirectory = file("$buildDir/jpackage")
from("$buildDir/jpackage/") {
include "Sparrow/**"
include "Sparrow.app/**"
}
}