From 8297f2a941fbcd69a04bab36d4b15acc567b35ce Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 28 Apr 2021 15:04:22 -0600 Subject: [PATCH] Attempt to upload app bundle as an artifact --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bb40ac12e..f3ca7fe12a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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