-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Make specific Checkout exceptions extend `CheckoutException` * Removed deprecated Events and `CountryCode` string references * Added @Builder.Default to `PaymentRequest` metadata (FOUR) * Added `name` and `city` attributes to BillingDescriptor (FOUR) * Removed redundant enum lookup methods * Minor fixes on CVV card payment mappings
- Loading branch information
1 parent
c110843
commit 84fefd0
Showing
4 changed files
with
8 additions
and
64 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
name: build-release | ||
name: build-release-4.8.1-jre8 | ||
on: | ||
push: | ||
paths: | ||
- gradle.properties | ||
jobs: | ||
deploy: | ||
if: github.ref == 'refs/heads/master' | ||
if: github.ref == 'refs/heads/integration/release_4.8.1_java_8' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-java@v2 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
java-version: '8' | ||
- id: read-version | ||
uses: HardNorth/[email protected] | ||
with: | ||
|
@@ -22,7 +22,7 @@ jobs: | |
- id: print-version | ||
run: echo "Releasing $CURRENT_VERSION" | ||
- id: validate-wrapper | ||
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b | ||
uses: gradle/wrapper-validation-action@v1 | ||
- id: build | ||
env: | ||
CHECKOUT_SECRET_KEY: ${{ secrets.IT_CHECKOUT_SECRET_KEY }} | ||
|
@@ -48,31 +48,4 @@ jobs: | |
release_name: ${{ env.CURRENT_VERSION }} | ||
body: ${{ github.event.head_commit.message }} | ||
draft: false | ||
prerelease: false | ||
docs-release: | ||
if: github.ref == 'refs/heads/master' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: '12.x' | ||
- uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }} | ||
- id: release-gh-pages | ||
env: | ||
USE_SSH: true | ||
GIT_USER: git | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "gh-actions" | ||
cd documentation | ||
if [ -e yarn.lock ]; then | ||
yarn install --frozen-lockfile | ||
elif [ -e package-lock.json ]; then | ||
npm ci | ||
else | ||
npm i | ||
fi | ||
npm run deploy | ||
prerelease: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters