Bundle linux preview releases too (#11231)

Release Notes:

- Added preview builds for linux
This commit is contained in:
Conrad Irwin 2024-04-30 16:10:48 -06:00 committed by GitHub
parent 3752ed294d
commit 93fbca4242
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -323,14 +323,13 @@ jobs:
name: zed-${{ github.event.pull_request.head.sha || github.sha }}-x86_64-unknown-linux-gnu.tar.gz name: zed-${{ github.event.pull_request.head.sha || github.sha }}-x86_64-unknown-linux-gnu.tar.gz
path: zed-*.tar.gz path: zed-*.tar.gz
# TODO linux : make it stable enough to be uploaded as a release - name: Upload app bundle to release
# - uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
# name: Upload app bundle to release if: ${{ env.RELEASE_CHANNEL == 'preview' }}
# if: ${{ env.RELEASE_CHANNEL == 'preview' || env.RELEASE_CHANNEL == 'stable' }} with:
# with: draft: true
# draft: true prerelease: ${{ env.RELEASE_CHANNEL == 'preview' }}
# prerelease: ${{ env.RELEASE_CHANNEL == 'preview' }} files: target/release/zed-linux-x86_64.tar.gz
# files: target/release/Zed.dmg body: ""
# body: "" env:
# env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}