Update pre-release version in GitHub Actions workflow

The packages.yml file was modified to use version 3.2.0-rc4 instead of 3.2.0-rc3. This change ensures that the latest pre-release version is correctly set during the workflow execution.
This commit is contained in:
Sipke Schoorstra 2024-08-06 22:56:03 +02:00
parent d2fc7fb005
commit 1dd2c1c3d5

View file

@ -62,7 +62,7 @@ jobs:
TAG_NAME=${TAG_NAME#refs/tags/} # remove the refs/tags/ prefix
echo "VERSION=${TAG_NAME}" >> $GITHUB_ENV
else
echo "VERSION=3.2.0-rc3.${{github.run_number}}" >> $GITHUB_ENV
echo "VERSION=3.2.0-rc4.${{github.run_number}}" >> $GITHUB_ENV
fi
- name: Set up JDK 17
uses: actions/setup-java@v2