Skip to content

Commit

Permalink
Merge pull request #3149 from ann0see/hotfix/removeBrewCaching
Browse files Browse the repository at this point in the history
Autobuild: Hotfix: Remove caching and pinning of create-dmg
  • Loading branch information
pljones authored Aug 22, 2023
2 parents d345875 + 219bf50 commit 56136de
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/autobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ jobs:
needs.create_release.outputs.publish_to_release == 'true' &&
steps.build.outputs.macos_notarize == 'true'
id: notarize-macOS-app
uses: devbotsxyz/xcode-notarize@d7219e1c390b47db8bab0f6b4fc1e3b7943e4b3b
uses: lando/notarize-action@4f5869b09386e8336802159031e4189e0919ae20
with:
product-path: deploy/${{ steps.get-artifacts.outputs.artifact_1 }}
primary-bundle-id: io.jamulus.Jamulus
Expand All @@ -414,7 +414,7 @@ jobs:
needs.create_release.outputs.publish_to_release == 'true' &&
steps.build.outputs.macos_notarize == 'true'
id: staple-macOS-app
uses: devbotsxyz/xcode-staple@ae68b22ca35d15864b7f7923e1a166533b2944bf
uses: BoundfoxStudios/action-xcode-staple@cd6c16fb6a3dfb365203a41343926f81e813afad
with:
product-path: deploy/${{ steps.get-artifacts.outputs.artifact_1 }}

Expand Down
5 changes: 4 additions & 1 deletion mac/deploy_mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,10 @@ build_installer_image() {

# Install create-dmg via brew. brew needs to be installed first.
# Download and later install. This is done to make caching possible
brew_install_pinned "create-dmg" "1.1.0"
# brew_install_pinned "create-dmg" "1.1.0"

# FIXME: Currently caching is disabled due to an error in the extract step
brew install create-dmg

# Get Jamulus version
local app_version
Expand Down

0 comments on commit 56136de

Please sign in to comment.