-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: mateoconlechuga <[email protected]>
- Loading branch information
1 parent
68c1797
commit d0fd10e
Showing
1 changed file
with
6 additions
and
6 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 |
---|---|---|
|
@@ -138,7 +138,7 @@ jobs: | |
PREFIX: ${{github.workspace}} | ||
run: make -j4 -C ${{env.TOOLCHAIN_PATH}} install V=1 | ||
|
||
- name: "[macOS install] CodeSign Toolchain binaries" | ||
- name: "[macOS] CodeSign Toolchain binaries" | ||
if: runner.os == 'macOS' | ||
env: | ||
MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }} | ||
|
@@ -154,7 +154,7 @@ jobs: | |
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k $MACOS_KEYCHAIN_PWD build.keychain | ||
/usr/bin/codesign --deep --force --verify --verbose --sign "$MACOS_CODESIGN_IDENT" --timestamp --options runtime $CEDEV_BIN/* | ||
- name: "[macOS install] Create the DMG" | ||
- name: "[macOS] Create the DMG" | ||
if: runner.os == 'macOS' | ||
run: | | ||
brew install create-dmg; | ||
|
@@ -172,17 +172,17 @@ jobs: | |
"CEdev-${{runner.os}}.${{matrix.install-output-ext}}" \ | ||
"${TOOLCHAIN_PATH}/resources/macOS/dmg/contents" | ||
- name: "[macOS install] Notarize DMG (master branch push only)" | ||
if: runner.os == 'macOS' && github.event_name == 'push' && github.ref == 'refs/heads/master' | ||
- name: "[macOS] Notarize DMG" | ||
if: runner.os == 'macOS' && github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v')) | ||
uses: adriweb/[email protected] | ||
with: | ||
product-path: CEdev-${{runner.os}}.${{matrix.install-output-ext}} | ||
appstore-connect-username: ${{ secrets.APPLE_NOTARIZATION_USERNAME }} | ||
appstore-connect-password: ${{ secrets.APPLE_NOTARIZATION_PASSWORD }} | ||
primary-bundle-id: 'com.adriweb.CEToolchain' | ||
|
||
- name: "[macOS install] Staple DMG (master branch push only)" | ||
if: runner.os == 'macOS' && github.event_name == 'push' && github.ref == 'refs/heads/master' | ||
- name: "[macOS] Staple DMG" | ||
if: runner.os == 'macOS' && github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v')) | ||
uses: devbotsxyz/[email protected] | ||
with: | ||
product-path: CEdev-${{runner.os}}.${{matrix.install-output-ext}} | ||
|