From 1dd2c1c3d5daa3494cc961e4ec4aaa483cdf98e7 Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Tue, 6 Aug 2024 22:56:03 +0200 Subject: [PATCH] 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. --- .github/workflows/packages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 5213d3487..76fce7bfe 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -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