-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a20188f
commit 4727d3e
Showing
2 changed files
with
20 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,12 +71,16 @@ jobs: | |
# import certificate to keychain | ||
security import $CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH | ||
security import INSTALLER_CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH | ||
security list-keychain -d user -s $KEYCHAIN_PATH | ||
security list-keychain -d user -s $KEYCHAIN_PATH | ||
- name: Build App Distribution | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: packageReleaseDistributionForCurrentOS -Pcompose.desktop.mac.sign=true | ||
- name: Package Linux Distribution | ||
uses: gradle/gradle-build-action@v2 | ||
if: matrix.os == 'ubuntu-latest' | ||
with: | ||
arguments: packageDistributable | ||
- name: Setup MSbuild | ||
if: matrix.os == 'windows-latest' | ||
uses: microsoft/[email protected] | ||
|
@@ -105,6 +109,8 @@ jobs: | |
app/desktop/build/compose/binaries/main-release/deb/*.deb | ||
app/desktop/build/compose/binaries/main-release/msi/*.msi | ||
app/desktop/build/compose/binaries/main-release/pkg/*.pkg | ||
app/desktop/build/compose/binaries/main-release/pkg/*.pkg | ||
app/desktop/build/distributions/*.tar.gz | ||
build_android_app: | ||
runs-on: ubuntu-latest | ||
name: Build Android App | ||
|
@@ -199,5 +205,6 @@ jobs: | |
deb/*.deb | ||
pkg/*.pkg | ||
msi/*.msi | ||
*.tar.gz | ||
*.zip | ||
*-signed.apk | ||
*-signed.apk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters