Skip to content

Commit

Permalink
Fix Release Process and Bump Braintree Android (#448)
Browse files Browse the repository at this point in the history
* Fix release process
* Bump braintree core version
  • Loading branch information
sarahkoop authored Oct 18, 2023
1 parent f6723d9 commit 731a6a0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 50 deletions.
34 changes: 0 additions & 34 deletions .github/actions/close_and_release_repository/action.yml

This file was deleted.

6 changes: 1 addition & 5 deletions .github/actions/publish_module/action.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: 'Publish Module'
description: 'Publishes module'
inputs:
module:
description: 'Module'
required: true
default: ''
sonatype_usr:
description: 'Sonatype user'
required: true
Expand All @@ -28,7 +24,7 @@ inputs:
runs:
using: "composite"
steps:
- run: ./gradlew --stacktrace clean :${{ inputs.module }}:publishToSonatype
- run: ./gradlew --stacktrace publishToSonatype closeAndReleaseSonatypeStagingRepository
shell: bash
env:
SONATYPE_NEXUS_USERNAME: ${{ inputs.sonatype_usr }}
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,6 @@ jobs:
version: ${{ github.event.inputs.version }}
- name: Publish Drop-in
uses: ./.github/actions/publish_module
with:
module: Drop-In
sonatype_usr: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
sonatype_pwd: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
signing_key_id: ${{ secrets.SIGNING_KEY_ID }}
signing_key_pwd: ${{ secrets.SIGNING_KEY_PASSWORD }}
signing_key_file: ${{ env.SIGNING_KEY_FILE_PATH }}
- name: Close and Release Repository
uses: ./.github/actions/close_and_release_repository
with:
sonatype_usr: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
sonatype_pwd: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release_snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ jobs:
- name: Publish Drop-in
uses: ./.github/actions/publish_module
with:
module: Drop-In
sonatype_usr: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
sonatype_pwd: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
signing_key_id: ${{ secrets.SIGNING_KEY_ID }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Braintree Android Drop-In Release Notes

## unreleased

* Bump brinatree_android module dependency versions to `4.39.0`

## 6.13.0

* Bump braintree_android module dependency versions to `4.38.2`
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
}

ext.brainTreeVersion = "4.38.2"
ext.brainTreeVersion = "4.39.0"

ext.deps = [
"braintreeCore" : "com.braintreepayments.api:braintree-core:$brainTreeVersion",
Expand Down

0 comments on commit 731a6a0

Please sign in to comment.