Skip to content

Commit

Permalink
32.1.beta.6, add github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhael-Danilov committed Sep 3, 2024
1 parent cfd405d commit 8966b97
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 2 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: build

on:
push:
branches: [ "*" ] # This will trigger the workflow on push to any branch
pull_request:
branches: [ "*" ] # This will trigger the workflow on pull requests to any branch

jobs:
apk:
name: Generate APK
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: '${{ github.ref }}'

- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17

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

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

- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: apk
path: '**/*.apk'
4 changes: 2 additions & 2 deletions RemixedDungeon/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ android {
manifestPlaceholders = ["admob_app_id":getApiField("admob_app_id")]

applicationId "com.nyrds.pixeldungeon.ml"
versionCode 1212
versionName "32.1.beta.5"
versionCode 1213
versionName "32.1.beta.6"
targetSdkVersion 34
compileSdkVersion 34
minSdkVersion 21
Expand Down

0 comments on commit 8966b97

Please sign in to comment.