Skip to content

Commit

Permalink
Cosmetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cowwoc committed Oct 31, 2024
1 parent 7ef9ef0 commit 1dfc1ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ jobs:
- name: Cache Dependencies
uses: actions/cache@v4
with:
path: |
~/.m2/repository/*
path: ~/.m2/repository/*
key: ${{ runner.OS }}-maven-${{ hashFiles('**/pom.xml') }}

# Maven command-line options:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/deploy_to_maven_central.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,13 @@ jobs:
./mvnw --batch-mode -V -e -pl '!dropwizard,!jersey'
-Dstaging_repository_id=${{ needs.open-release.outputs.STAGING_REPOSITORY_ID }}
-Dstaging_host="${{ env.STAGING_HOST }}"
deploy -P release
-P release
deploy
# Must quote exclamation mark on bash: https://stackoverflow.com/a/27177197/14731
- name: Generate Javadoc
run: |
./mvnw --batch-mode -V -e verify javadoc:aggregate -pl '!dropwizard,!jersey'
./mvnw --batch-mode -V -e -pl '!dropwizard,!jersey' verify javadoc:aggregate
mkdir --parents "${{ needs.open-release.outputs.VERSION }}/docs"
mv target/reports/apidocs "${{ needs.open-release.outputs.VERSION }}/docs/api"
Expand Down

0 comments on commit 1dfc1ce

Please sign in to comment.