Skip to content

Commit

Permalink
Create build_unsig.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xteamlyer authored Apr 13, 2024
1 parent 17726cb commit 5af0fc4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build_unsig.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build rel APK

on:
push:
pull_request:
workflow_call:
workflow_dispatch:

jobs:
build-rel-apk:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- uses: gradle/actions/setup-gradle@v3
with:
cache-encryption-key: Da25KUVSE5jbGds2zXmfXw==
gradle-home-cache-cleanup: true

- name: Build rel APK
run: ./gradlew clean app:assembleRelease
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Lawnicons
path: app/build/outputs/apk/app/release/*.apk

0 comments on commit 5af0fc4

Please sign in to comment.