mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-24 17:28:40 +00:00
Attempt to upload app bundle as an artifact
This commit is contained in:
parent
898271edfb
commit
8297f2a941
1 changed files with 8 additions and 1 deletions
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
|
@ -35,7 +35,7 @@ jobs:
|
|||
target
|
||||
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
|
||||
|
||||
- name: Install rust
|
||||
- name: Install Rust
|
||||
if: steps.cache.outputs.cache-hit != 'true'
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
|
@ -44,3 +44,10 @@ jobs:
|
|||
|
||||
- name: Run tests
|
||||
run: cargo test --no-fail-fast
|
||||
|
||||
- name: Create and upload app bundle
|
||||
run: script/bundle
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: Zed.app
|
||||
path: target/release/bundle/osx/Zed.app
|
||||
|
|
Loading…
Reference in a new issue