Update build-linux.yml

This commit is contained in:
JieXu 2025-10-23 09:12:06 +08:00 committed by GitHub
parent 16479b8180
commit 3a197fc34e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -68,6 +68,21 @@ jobs:
file_glob: true
prerelease: true
- name: Package AppImage
if: github.event.inputs.release_tag != ''
run: |
chmod a+x package-appimage.sh
./package-appimage.sh
- name: Upload AppImage to release
uses: svenstaro/upload-release-action@v2
if: github.event.inputs.release_tag != ''
with:
file: ${{ github.workspace }}/v2rayN*.AppImage
tag: ${{ github.event.inputs.release_tag }}
file_glob: true
prerelease: true
# release zip archive
- name: Package release zip archive
if: github.event.inputs.release_tag != ''