Adds zip to release

This commit is contained in:
David Benson 2025-05-26 17:28:18 +01:00
parent a839167a94
commit f1f18b8f68

View File

@ -88,3 +88,15 @@ jobs:
#Disable auto-update for appx also
yarn run sync disableUpdate
yarn run release-appx
- name: Install GitHub CLI
uses: cli/cli-action@v1
- name: Upload portable zip to GitHub Release
shell: powershell
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
$version = "${{ github.ref }}" -replace 'refs/tags/v', ''
gh release upload "v$version" "dist/draw.io-$version-windows.zip" --clobber