Skip to content

Commit

Permalink
version 0.86
Browse files Browse the repository at this point in the history
  • Loading branch information
woesss committed Feb 23, 2024
1 parent 8566502 commit 1ff23f7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
16 changes: 15 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Android CI
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches:
- master

jobs:
build:
Expand Down Expand Up @@ -54,8 +57,19 @@ jobs:
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: ${{ steps.get_version.outputs.version }}
prerelease: true
draft: true
files: |
app/build/outputs/apk/**/*.apk
symbols.zip
- name: Upload Artifact (bin)
uses: actions/upload-artifact@v3.1.3
with:
name: "JL-Mod_${{ steps.get_version.outputs.version }}"
path: app/build/outputs/apk/emulator/release/*.apk

- name: Upload a Build Artifact (sym)
uses: actions/upload-artifact@v3.1.3
with:
name: "Symbols"
path: artifact
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId "ru.woesss.j2meloader"
minSdk MIN_SDK
targetSdk TARGET_SDK
versionCode 45
versionName "0.86-ALPHA"
versionCode 46
versionName "0.86"
resValue 'string', 'app_name', rootProject.name
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down

0 comments on commit 1ff23f7

Please sign in to comment.