Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Build and Release

on:
workflow_dispatch:
Expand Down Expand Up @@ -86,3 +86,22 @@ jobs:
with:
name: linux-app
path: build/linux/x64/release/bundle
release:
name: Create Release
if: ${{ github.ref == 'refs/heads/main' && startsWith(github.ref, 'refs/tags/v') }}
needs: [build-android, build-ios, build-macos, build-windows, build-linux]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
path: artifacts
- uses: softprops/action-gh-release@v2
with:
files: |
artifacts/android-apk/app-release.apk
artifacts/ios-app/Runner.app
artifacts/macos-app/VPNclient.app
artifacts/windows-app/VPNclient.exe
artifacts/linux-app/bundle/
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31 changes: 0 additions & 31 deletions .github/workflows/release.yml

This file was deleted.