Skip to content

Commit

Permalink
ReVancedUpdater: Add workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Ledda <leonardoledda@gmail.com>
  • Loading branch information
LeddaZ committed Jul 13, 2023
1 parent 591581b commit f651c41
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: build

on: [ push, pull_request, workflow_dispatch ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v1

- name: Setup JDK 17
uses: actions/setup-java@v1
with:
java-version: 17

- name: Build with Gradle
run: ./gradlew assembleDebug

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

0 comments on commit f651c41

Please sign in to comment.