From fd3b2c38eb6e9f5261a5944942e8393aeb793595 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Mon, 17 May 2021 23:39:01 -0600 Subject: [PATCH] Try a diff upload action --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5369935567..9bf08b2df5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,13 +66,13 @@ jobs: name: Zed.dmg path: target/release/Zed.dmg - - uses: svenstaro/upload-release-action@v2 + - uses: softprops/action-gh-release@v1 name: Upload app bundle to release if: ${{ startsWith(github.ref, 'refs/tags/v') }} with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: target/release/Zed.dmg - asset_name: Zed.dmg - tag: ${{ github.ref }} + draft: true + files: target/release/Zed.dmg overwrite: true body: "" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}