Skip to content

Commit 3ca7832

Browse files
committed
attach javadoc before signing
1 parent 4983bbc commit 3ca7832

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
image_tags:
1010
description: 'Extra docker image tags ("latest,test")'
1111
required: true
12-
default: 'latest'
12+
default: 'latest,release'
1313
jobs:
1414
publish:
1515
runs-on: ubuntu-latest

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -291,26 +291,26 @@
291291
<plugins>
292292
<plugin>
293293
<groupId>org.apache.maven.plugins</groupId>
294-
<artifactId>maven-gpg-plugin</artifactId>
295-
<version>3.0.1</version>
294+
<artifactId>maven-javadoc-plugin</artifactId>
296295
<executions>
297296
<execution>
298-
<id>sign-artifacts</id>
299-
<phase>verify</phase>
297+
<id>attach-javadocs</id>
300298
<goals>
301-
<goal>sign</goal>
299+
<goal>jar</goal>
302300
</goals>
303301
</execution>
304302
</executions>
305303
</plugin>
306304
<plugin>
307305
<groupId>org.apache.maven.plugins</groupId>
308-
<artifactId>maven-javadoc-plugin</artifactId>
306+
<artifactId>maven-gpg-plugin</artifactId>
307+
<version>3.0.1</version>
309308
<executions>
310309
<execution>
311-
<id>attach-javadocs</id>
310+
<id>sign-artifacts</id>
311+
<phase>verify</phase>
312312
<goals>
313-
<goal>jar</goal>
313+
<goal>sign</goal>
314314
</goals>
315315
</execution>
316316
</executions>

0 commit comments

Comments
 (0)