Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
htr-tech authored Feb 18, 2025
1 parent 8efb22a commit 38577e5
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build

on:
release:
types: [published]
push:
branches:
- master


workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4

- name: Perm
run: chmod +x gradlew

- name: Build
run: ./gradlew assembleDebug

- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: app.apk
path: ./app/build/outputs/apk/debug/app-debug.apk

0 comments on commit 38577e5

Please sign in to comment.