Skip to content

Commit

Permalink
Add github action to create draft release on pushed tags
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Ray committed Jan 14, 2025
1 parent c061aca commit cccac04
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,16 @@ jobs:
with:
name: pikatorrent-ios
path: app/build/ios/iphoneos/*.app

release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-24.04
permissions:
contents: write
needs: [linux, windows, macos, android]
steps:
- name: Release
uses: ncipollo/release-action@v1
with:
draft: true
artifacts: "pikatorrent-linux.zip,pikatorrent-windows.zip,pikatorrent-macos.zip,pikatorrent-android.zip"

0 comments on commit cccac04

Please sign in to comment.