Skip to content

Commit

Permalink
Merge pull request #52 from trustedshops-public/develop
Browse files Browse the repository at this point in the history
MAD-286: export DEPLOY_VERSION otherwise gradle wrapper wont get the …
  • Loading branch information
irockel authored Jan 10, 2024
2 parents 24f830d + e5f0581 commit 2822566
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ jobs:
- run:
name: Publish Snapshot Release
command: |
DEPLOY_VERSION="1.1.0-SNAPSHOT" && ./gradlew publish -Psigning.secretKeyRingFile=/home/circleci/.gnupg/secring.gpg -Psigning.password="${GPG_PASSPHRASE}" -Psigning.keyId="${GPG_KEY_ID}" -PbuildRelease=true
export DEPLOY_VERSION="1.1.0-SNAPSHOT"
./gradlew publish -Psigning.secretKeyRingFile=/home/circleci/.gnupg/secring.gpg -Psigning.password="${GPG_PASSPHRASE}" -Psigning.keyId="${GPG_KEY_ID}" -PbuildRelease=true
deploy-release:
executor: android-docker
Expand All @@ -109,7 +110,8 @@ jobs:
- run:
name: Publish Snapshot Release
command: |
DEPLOY_VERSION="1.0.1" && ./gradlew publish -Psigning.secretKeyRingFile=/home/circleci/.gnupg/secring.gpg -Psigning.password="${GPG_PASSPHRASE}" -Psigning.keyId="${GPG_KEY_ID}" -PbuildRelease=true
export DEPLOY_VERSION="1.0.1"
./gradlew publish -Psigning.secretKeyRingFile=/home/circleci/.gnupg/secring.gpg -Psigning.password="${GPG_PASSPHRASE}" -Psigning.keyId="${GPG_KEY_ID}" -PbuildRelease=true
distribute-dev:
Expand Down

0 comments on commit 2822566

Please sign in to comment.