Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-all-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ jobs:
java-version: '7'

# with central credentials
- name: Setup Temurin JDK 21
- name: Setup Temurin JDK 21 (publish)
uses: actions/setup-java@v5
if: github.event_name == 'release' || inputs.publish
with:
Expand Down Expand Up @@ -265,8 +265,8 @@ jobs:
fi
fi
done
echo "Contents of target/classes/net:"
find target/classes/net -maxdepth 3 -type f -print
echo "Contents of target/classes/net/jpountz/util:"
find target/classes/net/jpountz/util -type f -print
Comment on lines +268 to +269
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Side note: I guess it would also work to just do find target/classes ... since at this point the Maven build has not run yet so there should be no other files under target/classes yet.


# with maven central
- name: Build and deploy with Maven
Expand Down