mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-24 17:28:40 +00:00
Install cargo-bundle if needed in script/bundle
This commit is contained in:
parent
08c7a499e5
commit
7f2da31708
2 changed files with 4 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -47,7 +47,7 @@ jobs:
|
|||
uses: actions/checkout@v2
|
||||
|
||||
- name: Create app bundle
|
||||
run: bash ./script/bundle
|
||||
run: script/bundle
|
||||
|
||||
- name: Upload app bundle to workflow run
|
||||
uses: actions/upload-artifact@v2
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
|
||||
set -e
|
||||
|
||||
# Install cargo-bundle 0.5.0 if it's not already installed
|
||||
cargo install cargo-bundle --version 0.5.0
|
||||
|
||||
# Build the app bundle for x86_64
|
||||
pushd zed > /dev/null
|
||||
cargo bundle --release --target x86_64-apple-darwin
|
||||
|
|
Loading…
Reference in a new issue