File tree 2 files changed +16
-14
lines changed
2 files changed +16
-14
lines changed Original file line number Diff line number Diff line change 73
73
with :
74
74
token : ${{ secrets.CODECOV_TOKEN }}
75
75
76
+ - name : Set up Node.js
77
+ uses : actions/setup-node@v2
78
+ with :
79
+ node-version : 20
80
+
76
81
- name : Semantic Release
77
82
run : |
78
83
npm install -g @conveyal/maven-semantic-release semantic-release
81
86
GITHUB_TOKEN : ${{ secrets.GH_TOKEN }}
82
87
GPG_KEY_NAME : ${{ secrets.GPG_KEY_NAME }}
83
88
GPG_PASSPHRASE : ${{ secrets.GPG_PRIVATE_KEY_PASSWORD }}
84
- OSSRH_JIRA_USERNAME : ${{ secrets.OSSRH_USERNAME }}
85
- OSSRH_JIRA_PASSWORD : ${{ secrets.OSSRH_PASSWORD }}
89
+ OSSRH_JIRA_USERNAME : ${{ secrets.OSSRH_JIRA_USERNAME }}
90
+ OSSRH_JIRA_PASSWORD : ${{ secrets.OSSRH_JIRA_PASSWORD }}
Original file line number Diff line number Diff line change 29
29
<licenses >
30
30
<license >
31
31
<name >The Apache Software License, Version 2.0</name >
32
- <url >http ://www.apache.org/licenses/LICENSE-2.0.txt</url >
32
+ <url >https ://www.apache.org/licenses/LICENSE-2.0.txt</url >
33
33
<distribution >repo</distribution >
34
34
</license >
35
35
</licenses >
60
60
<distributionManagement >
61
61
<snapshotRepository >
62
62
<id >ossrh</id >
63
- <url >https://oss .sonatype.org/content/repositories/snapshots </url >
63
+ <url >https://central .sonatype.com </url >
64
64
</snapshotRepository >
65
- <repository >
66
- <id >ossrh</id >
67
- <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
68
- </repository >
69
65
</distributionManagement >
70
66
67
+
71
68
<build >
72
69
<plugins >
73
70
<plugin >
181
178
</plugin >
182
179
<plugin >
183
180
<!-- Automatically close and deploy from OSSRH -->
184
- <groupId >org.sonatype.plugins </groupId >
185
- <artifactId >nexus-staging -maven-plugin</artifactId >
186
- <version >1.6.7 </version >
181
+ <groupId >org.sonatype.central </groupId >
182
+ <artifactId >central-publishing -maven-plugin</artifactId >
183
+ <version >0.5.0 </version >
187
184
<extensions >true</extensions >
188
185
<configuration >
189
- <serverId >ossrh</serverId >
190
- <nexusUrl >https://oss.sonatype.org/</ nexusUrl >
186
+ <publishingServerId >ossrh</publishingServerId >
187
+ <tokenAuth >true</ tokenAuth >
191
188
<!-- Release versions will be synced to Maven Central automatically. -->
192
- <autoReleaseAfterClose >true</autoReleaseAfterClose >
189
+ <autoPublish >true</autoPublish >
193
190
</configuration >
194
191
</plugin >
195
192
</plugins >
You can’t perform that action at this time.
0 commit comments