mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-25 18:33:09 +00:00
Fix environment variable reference in bundle app job
This commit is contained in:
parent
f56f0b7bbb
commit
8886cb5786
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -116,10 +116,10 @@ jobs:
|
||||||
|
|
||||||
- uses: softprops/action-gh-release@v1
|
- uses: softprops/action-gh-release@v1
|
||||||
name: Upload app bundle to release
|
name: Upload app bundle to release
|
||||||
if: ${{ github.env.RELEASE_CHANNEL }}
|
if: ${{ env.RELEASE_CHANNEL }}
|
||||||
with:
|
with:
|
||||||
draft: true
|
draft: true
|
||||||
prerelease: ${{ github.env.RELEASE_CHANNEL == 'preview' }}
|
prerelease: ${{ env.RELEASE_CHANNEL == 'preview' }}
|
||||||
files: target/release/Zed.dmg
|
files: target/release/Zed.dmg
|
||||||
overwrite: true
|
overwrite: true
|
||||||
body: ""
|
body: ""
|
||||||
|
|
Loading…
Reference in a new issue