Skip to content

Commit 100e639

Browse files
committed
fix: finalize release worflow, revert version
1 parent e7f3215 commit 100e639

File tree

12 files changed

+19
-19
lines changed

12 files changed

+19
-19
lines changed

.github/workflows/release.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
run: ./mvnw ${MAVEN_ARGS} versions:set -DnewVersion="${RELEASE_VERSION:1}" versions:commit
2626
env:
2727
RELEASE_VERSION: ${{ github.event.release.tag_name }}
28-
# - name: Release Maven package
29-
# uses: samuelmeuli/action-maven-publish@v1
30-
# with:
31-
# maven_profiles: "release"
32-
# gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
33-
# gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}
34-
# nexus_username: ${{ secrets.OSSRH_USERNAME }}
35-
# nexus_password: ${{ secrets.OSSRH_TOKEN }}
28+
- name: Release Maven package
29+
uses: samuelmeuli/action-maven-publish@v1
30+
with:
31+
maven_profiles: "release"
32+
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
33+
gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}
34+
nexus_username: ${{ secrets.OSSRH_USERNAME }}
35+
nexus_password: ${{ secrets.OSSRH_TOKEN }}
3636

3737
# This is separate job because there were issues with git after release step, was not able to commit changes. See history.
3838
update-working-version:

micrometer-support/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>java-operator-sdk</artifactId>
77
<groupId>io.javaoperatorsdk</groupId>
8-
<version>1.10.2-SNAPSHOT</version>
8+
<version>1.10.1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

operator-framework-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.javaoperatorsdk</groupId>
88
<artifactId>java-operator-sdk</artifactId>
9-
<version>1.10.2-SNAPSHOT</version>
9+
<version>1.10.1-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

operator-framework-junit5/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>java-operator-sdk</artifactId>
77
<groupId>io.javaoperatorsdk</groupId>
8-
<version>1.10.2-SNAPSHOT</version>
8+
<version>1.10.1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

operator-framework/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>java-operator-sdk</artifactId>
77
<groupId>io.javaoperatorsdk</groupId>
8-
<version>1.10.2-SNAPSHOT</version>
8+
<version>1.10.1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>io.javaoperatorsdk</groupId>
77
<artifactId>java-operator-sdk</artifactId>
8-
<version>1.10.2-SNAPSHOT</version>
8+
<version>1.10.1-SNAPSHOT</version>
99
<name>Operator SDK for Java</name>
1010
<description>Java SDK for implementing Kubernetes operators</description>
1111
<packaging>pom</packaging>

sample-operators/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.javaoperatorsdk</groupId>
99
<artifactId>java-operator-sdk</artifactId>
10-
<version>1.10.2-SNAPSHOT</version>
10+
<version>1.10.1-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>sample-operators</artifactId>

sample-operators/tomcat-operator/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.javaoperatorsdk</groupId>
99
<artifactId>sample-operators</artifactId>
10-
<version>1.10.2-SNAPSHOT</version>
10+
<version>1.10.1-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>sample-tomcat-operator</artifactId>

smoke-test-samples/common/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.javaoperatorsdk</groupId>
88
<artifactId>java-operator-sdk-smoke-test-samples</artifactId>
9-
<version>1.10.2-SNAPSHOT</version>
9+
<version>1.10.1-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>operator-framework-samples-common</artifactId>

smoke-test-samples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.javaoperatorsdk</groupId>
88
<artifactId>java-operator-sdk</artifactId>
9-
<version>1.10.2-SNAPSHOT</version>
9+
<version>1.10.1-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>java-operator-sdk-smoke-test-samples</artifactId>

smoke-test-samples/pure-java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.javaoperatorsdk</groupId>
88
<artifactId>java-operator-sdk-smoke-test-samples</artifactId>
9-
<version>1.10.2-SNAPSHOT</version>
9+
<version>1.10.1-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>operator-framework-samples-pure-java</artifactId>

smoke-test-samples/spring-boot-plain/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.javaoperatorsdk</groupId>
88
<artifactId>java-operator-sdk-smoke-test-samples</artifactId>
9-
<version>1.10.2-SNAPSHOT</version>
9+
<version>1.10.1-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>operator-framework-samples-spring-boot-plain</artifactId>

0 commit comments

Comments
 (0)