Skip to content

Commit

Permalink
Add build-android workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Ray committed Nov 21, 2023
1 parent 1f6347a commit 6f228a3
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build-android.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build desktop app & publish it to github release
on:
workflow_dispatch:
# push:
# tags:
# - v*

jobs:
build:
name: Build android
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Install
run: npm ci
- name: build
run: npm -w @pikatorrent/app run build:android:production

0 comments on commit 6f228a3

Please sign in to comment.