Skip to content

Commit

Permalink
build tags in macos release
Browse files Browse the repository at this point in the history
Signed-off-by: mateoconlechuga <[email protected]>
  • Loading branch information
mateoconlechuga committed Aug 11, 2022
1 parent 68c1797 commit d0fd10e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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;
Expand All @@ -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}}
Expand Down

0 comments on commit d0fd10e

Please sign in to comment.