Skip to content

Commit

Permalink
Prepare initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
evowizz committed Aug 18, 2024
1 parent 213a6a6 commit 125e62a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ name: Release

on:
push:
branches:
- main
tags:
- '*'


concurrency:
group: build-${{ github.ref }}
Expand All @@ -24,6 +25,10 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Current Ref
run: |
echo "Current Ref: ${{ github.ref }}"
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v4

Expand All @@ -47,6 +52,7 @@ jobs:
with:
artifacts: app/build/outputs/apk/release/app-release.apk
artifactContentType: application/vnd.android.package-archive
tag: ${{ github.ref_name }}
token: ${{ secrets.GH_RELEASE_TOKEN }}
generateReleaseNotes: true
draft: true
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ android {
applicationId = "dev.evowizz.cosmose"
minSdk = 31
targetSdk = 35
versionCode = 1
versionCode = 2
versionName = "1.0"
}

Expand Down

0 comments on commit 125e62a

Please sign in to comment.