Skip to content

Commit

Permalink
Merge branch 'main' into mf-release_0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maxfierke authored Oct 16, 2024
2 parents 6736728 + 90124ea commit cf5421c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
mstrap
- name: Build signed & notorized release bundle
run: make release RELEASE=1 STATIC=1 TARGET_ARCH=x86_64
run: make release RELEASE=1 STATIC=1 TARGET_ARCH=x86_64 CODESIGN_IDENTITY="${{ secrets.CODESIGN_IDENTITY }}"

- name: Smoke test the codesigned release
run: bin/mstrap --help
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
mstrap
- name: Build signed & notorized release bundle
run: make release RELEASE=1 STATIC=1 TARGET_ARCH=arm64
run: make release RELEASE=1 STATIC=1 TARGET_ARCH=arm64 CODESIGN_IDENTITY="${{ secrets.CODESIGN_IDENTITY }}"

- name: Smoke test the codesigned release
run: bin/mstrap --help
Expand Down
1 change: 1 addition & 0 deletions src/mstrap/steps/dependencies_step.cr
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ module MStrap
def bootstrap
install_mise if runtime_managers.any? { |rm| rm.name == "mise" }
install_rustup if runtime_managers.any? { |rm| rm.name == "rustup" }
set_strap_env!
strap_sh
load_profile!
brew_bundle
Expand Down

0 comments on commit cf5421c

Please sign in to comment.