Skip to content

Commit

Permalink
Fix missing auth in release-docker (#68)
Browse files Browse the repository at this point in the history
* Fix missing auth in release-docker
* Add javadoc to jar goal
  • Loading branch information
bjornandre authored Nov 15, 2023
1 parent 4a66f71 commit 60e771a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ jobs:
type=semver,pattern=v{{major}}
- name: Download Java asset
env:
GH_TOKEN: ${{ github.token }}
run: |
mkdir -p target
# Download just the jar file (no javadoc or sources)
Expand Down
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,14 @@
<release>21</release>
<doclint>all,-missing</doclint>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 60e771a

Please sign in to comment.