Browse Source

try fixing test deployment

pull/4719/head
Conny Duck 2 years ago
parent
commit
8e7ad66b18
No known key found for this signature in database
  1. 6
      .github/workflows/deploy-test.yml

6
.github/workflows/deploy-test.yml

@ -14,6 +14,8 @@ jobs:
runs-on: ubuntu-latest
needs: check-and-build
environment: Test
env:
BUILD_NUMBER: ${{ github.GITHUB_RUN_NUMBER }}
steps:
- name: Checkout
uses: actions/checkout@v4
@ -23,7 +25,7 @@ jobs:
- name: Set versionsCode
run: |
export VERSION_CODE=$(( ${{ github.GITHUB_RUN_NUMBER }} + 11000 ))
export VERSION_CODE=$(( ${BUILD_NUMBER} + 11000 ))
sed -i'.original' -e "s/^\([[:space:]]*versionCode[[:space:]]*\)[0-9]*/\\1$VERSION_CODE/" app/build.gradle
- name: Build Green aab
@ -55,4 +57,4 @@ jobs:
track: production
whatsNewDirectory: whatsnew
status: completed
mappingFile: app/build/outputs/mapping/blueGoogleRelease/mapping.txt
mappingFile: app/build/outputs/mapping/greenRelease/mapping.txt

Loading…
Cancel
Save