Skip to content

Commit dff49fd

Browse files
committed
Fix release script
1 parent e5d2ce0 commit dff49fd

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ENV GPG_PASSPHRASE=
66
ARG GIT_EMAIL=
77
ARG FULL_NAME=
88

9-
ARG MAVEN_VERSION=3.3.9
9+
ARG MAVEN_VERSION=3.9.6
1010
ARG USER_HOME_DIR="/root"
1111
ENV MAVEN_HOME /usr/share/maven
1212
ENV MAVEN_CONFIG "$USER_HOME_DIR/.m2"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Add the following dependency to your pom.xml:
1919
<dependency>
2020
<groupId>com.convertapi.client</groupId>
2121
<artifactId>convertapi</artifactId>
22-
<version>2.9</version>
22+
<version>2.10</version>
2323
</dependency>
2424
```
2525

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.convertapi.client</groupId>
1717
<artifactId>convertapi</artifactId>
18-
<version>2.9</version>
18+
<version>2.10</version>
1919
</dependency>
2020
</dependencies>
2121

maven-release.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@ echo "Set private key..."
77
cp -vr /gpg ~/.gnupg
88
echo "pinentry-mode loopback" > ~/.gnupg/gpg.conf
99
cp -vpr /maven ~/.m2
10-
cp -vr /ssh ~/.ssh
1110

1211
echo "Cloning convertapi-java..."
13-
ssh-keyscan github.com >> ~/.ssh/known_hosts
14-
git clone git@github.com:ConvertAPI/convertapi-java.git
12+
git clone https://${GIT_USERNAME}:${GIT_SECRET}@github.com/ConvertAPI/convertapi-java.git
1513
cd convertapi-java
1614

1715
echo "Switching to the release branch..."

0 commit comments

Comments
 (0)