Skip to content

Commit

Permalink
actions: publish when playstore happy (fixes #2008) (#2010)
Browse files Browse the repository at this point in the history
  • Loading branch information
dogi authored May 28, 2024
1 parent 76eace1 commit b469a1b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
env:
NUM: ${{ github.run_number }}
run: |
echo "VERSION="$(($NUM+6048)) >> $GITHUB_ENV
echo "VERSION="$(($NUM+6047)) >> $GITHUB_ENV
echo "BRANCH="${GITHUB_REF##*/} >> $GITHUB_ENV
- name: checkout repository code
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
track: internal
releaseName: "${{ env.VERSION }}"
status: completed
changesNotSentForReview: true
#changesNotSentForReview: true

# - name: mobile security framework
# run: |
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
def appVersionCode = (System.env.GITHUB_RUN_NUMBER ? Integer.valueOf(System.env.GITHUB_RUN_NUMBER) : 2) + 6048
def appVersionName = (System.env.GITHUB_RUN_NUMBER ? Integer.valueOf(System.env.GITHUB_RUN_NUMBER) + 6048: "1.0.0") + ""
def appVersionCode = (System.env.GITHUB_RUN_NUMBER ? Integer.valueOf(System.env.GITHUB_RUN_NUMBER) : 2) + 6047
def appVersionName = (System.env.GITHUB_RUN_NUMBER ? Integer.valueOf(System.env.GITHUB_RUN_NUMBER) + 6047: "1.0.0") + ""

android {
namespace 'io.treehouses.remote'
Expand Down

0 comments on commit b469a1b

Please sign in to comment.