mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
followup
This commit is contained in:
parent
3ed15ffefe
commit
c780a8d944
2 changed files with 3 additions and 2 deletions
4
.github/workflows/package.yaml
vendored
4
.github/workflows/package.yaml
vendored
|
@ -28,10 +28,10 @@ jobs:
|
||||||
- name: Build with Gradle
|
- name: Build with Gradle
|
||||||
run: ./gradlew jpackage
|
run: ./gradlew jpackage
|
||||||
- name: Package zip distribution
|
- name: Package zip distribution
|
||||||
if: ${{ runner.os == 'Windows' }}
|
if: ${{ runner.os == 'Windows' || runner.os == 'macOS' }}
|
||||||
run: ./gradlew packageZipDistribution
|
run: ./gradlew packageZipDistribution
|
||||||
- name: Package tar distribution
|
- name: Package tar distribution
|
||||||
if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }}
|
if: ${{ runner.os == 'Linux' }}
|
||||||
run: ./gradlew packageTarDistribution
|
run: ./gradlew packageTarDistribution
|
||||||
- name: Upload Artifacts
|
- name: Upload Artifacts
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
|
|
|
@ -245,6 +245,7 @@ task packageZipDistribution(type: Zip) {
|
||||||
destinationDirectory = file("$buildDir/jpackage")
|
destinationDirectory = file("$buildDir/jpackage")
|
||||||
from("$buildDir/jpackage/") {
|
from("$buildDir/jpackage/") {
|
||||||
include "Sparrow/**"
|
include "Sparrow/**"
|
||||||
|
include "Sparrow.app/**"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue