Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Commit

Permalink
Release ALPHA 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
wingio committed Jul 20, 2022
1 parent 0b054c6 commit 9897a44
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ on:
versionName:
required: true
description: This releases version name
default: "ALPHA - 1.00"
default: "ALPHA - 1.20"
versionCode:
required: true
description: This releases version code
default: "1300"
default: "1320"
preRelease:
description: 'Mark as pre-release'
required: true
type: boolean
description:
required: false
description: Description of this release
Expand Down Expand Up @@ -48,8 +52,9 @@ jobs:
git tag "$tag"
git push origin "$tag"
gh release create "$tag" \
--title "v${{ github.event.inputs.versionName }}" \
--title "${{ github.event.inputs.versionName }}" \
--notes "${{ github.event.inputs.description }}" \
app/build/outputs/apk/release/app-release.apk
if [${{github.event.inputs.preRelease}} == true]; then gh release edit "$tag" -p; fi
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId = "xyz.wingio.logra"
minSdk = 21
targetSdk = 32
versionCode = 1310
versionName = "ALPHA - 1.10"
versionCode = 1320
versionName = "ALPHA - 1.20"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down

0 comments on commit 9897a44

Please sign in to comment.