Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBoomDeveloper committed Feb 21, 2024
2 parents e311db7 + cec7193 commit 10bf93c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 16 deletions.
13 changes: 0 additions & 13 deletions .github/FUNDING.yml

This file was deleted.

25 changes: 22 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,43 @@
name: Artifact Build

on: push
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run Gradle

- name: Build Release Apk
run: ./gradlew assembleRelease
- name: Upload Artifact

- name: Build Debug Apk
run: ./gradlew assembleDebug

- name: Upload Release Apk
uses: actions/upload-artifact@v4
with:
name: "Release APK"
retention-days: 90
path: "app/build/outputs/apk/release/*.apk"

- name: Upload Debug Apk
uses: actions/upload-artifact@v4
with:
name: "Debug APK"
retention-days: 90
path: "app/build/outputs/apk/debug/*.apk"

0 comments on commit 10bf93c

Please sign in to comment.