mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-02 08:20:09 +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
|
target
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
|
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
|
||||||
|
|
||||||
- name: Install rust
|
- name: Install Rust
|
||||||
if: steps.cache.outputs.cache-hit != 'true'
|
if: steps.cache.outputs.cache-hit != 'true'
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
|
@ -44,3 +44,10 @@ jobs:
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --no-fail-fast
|
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