Skip to content

Commit 6ee57d9

Browse files
committed
fix(ci): attempt to fix ci
1 parent f4ab34b commit 6ee57d9

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
MAVEN_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
4444
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
4545
run: |
46-
mvn clean deploy -P release \
46+
mvn clean deploy \
4747
--no-transfer-progress \
4848
--batch-mode \
4949
# -DskipTests \

pom.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@
9797

9898
<distributionManagement>
9999
<snapshotRepository>
100-
<id>ossrh</id>
100+
<id>central</id>
101101
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
102102
</snapshotRepository>
103103
<repository>
104-
<id>ossrh</id>
104+
<id>central</id>
105105
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
106106
</repository>
107107
</distributionManagement>
@@ -179,17 +179,19 @@
179179
<goals>deploy</goals>
180180
</configuration>
181181
</plugin>
182+
<!--
182183
<plugin>
183184
<groupId>org.sonatype.plugins</groupId>
184185
<artifactId>nexus-staging-maven-plugin</artifactId>
185186
<version>1.6.7</version>
186187
<extensions>true</extensions>
187188
<configuration>
188-
<serverId>ossrh</serverId>
189+
<serverId>central</serverId>
189190
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
190191
<autoReleaseAfterClose>true</autoReleaseAfterClose>
191192
</configuration>
192193
</plugin>
194+
-->
193195
<plugin>
194196
<groupId>org.codehaus.mojo</groupId>
195197
<artifactId>exec-maven-plugin</artifactId>

0 commit comments

Comments
 (0)