Skip to content

Commit b532fa9

Browse files
committed
Merge branch 'hotfix/2.4.3'
2 parents 3af57cd + e2e7b60 commit b532fa9

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/maven-develop.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,20 @@ jobs:
2727
steps:
2828
- uses: actions/checkout@v2
2929
- name: Set up JDK
30-
uses: actions/setup-java@v1
30+
uses: actions/setup-java@v2
3131
with:
3232
java-version: 11
3333
server-id: ossrh
34+
distribution: adopt
3435
server-username: MAVEN_USERNAME
3536
server-password: MAVEN_PASSWORD
37+
gpg-private-key: ${{ secrets.GPG_SECRET_KEY }}
3638
gpg-passphrase: MAVEN_GPG_PASSPHRASE
3739
- name: Publish package to maven central
3840
run: mvn --batch-mode clean deploy -P central-deploy -DskipTests=true
3941
env:
4042
MAVEN_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
4143
MAVEN_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
4244
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
45+
4346

.github/workflows/maven-feature-hotfix.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ jobs:
2020
- uses: actions/checkout@v2
2121
- name: Build with Maven
2222
run: mvn clean install
23-

.github/workflows/maven.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,14 @@ jobs:
2727
steps:
2828
- uses: actions/checkout@v2
2929
- name: Set up JDK
30-
uses: actions/setup-java@v1
30+
uses: actions/setup-java@v2
3131
with:
3232
java-version: 11
3333
server-id: ossrh
34+
distribution: adopt
3435
server-username: MAVEN_USERNAME
3536
server-password: MAVEN_PASSWORD
37+
gpg-private-key: ${{ secrets.GPG_SECRET_KEY }}
3638
gpg-passphrase: MAVEN_GPG_PASSPHRASE
3739
- name: Publish package to maven central
3840
run: mvn --batch-mode clean deploy -P central-deploy -DskipTests=true --update-snapshots -Prelease

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.channelape</groupId>
66
<artifactId>shopify-sdk</artifactId>
7-
<version>2.4.1</version>
7+
<version>2.4.3</version>
88

99
<name>Shopify SDK</name>
1010
<description>Java SDK for Shopify REST API.</description>

0 commit comments

Comments
 (0)