Updating java and maven Version (#285) #83
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Build Process without releasing | |
on: | |
push: | |
paths: | |
- '.github/workflows/**.yml' | |
- 'client/jpackage/**' | |
- 'build-client.sh' | |
- 'mvn' | |
- 'mvnw' | |
jobs: | |
read-version-string: | |
name: "Read Version String from Maven project.version" | |
runs-on: ubuntu-latest | |
outputs: | |
project_version: ${{ steps.step1.outputs.project_version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: step1 | |
name: "Read Version String and write to output" | |
run: | | |
project_version=$(./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout) | |
# fail, if version is not a valid version string (mvn outputs "null object or invalid expression") | |
if [[ "$project_version" = "null object or invalid expression" ]]; then | |
echo "Could not determine project version. Output was: $project_version" | |
echo "Aborting" | |
exit 1 | |
fi | |
echo "${project_version}" | |
echo "project_version=${project_version}" >> "$GITHUB_OUTPUT" | |
build: | |
name: Build to test | |
needs: read-version-string | |
uses: ./.github/workflows/build.yml | |
with: | |
version: ${{ needs.read-version-string.outputs.project_version }} | |
secrets: inherit |