This is an automated email from the ASF dual-hosted git repository. jdaugherty pushed a commit to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit ad38b47785d0e2449125abfda4b8a4b6c3394104 Author: James Daugherty <[email protected]> AuthorDate: Fri May 30 16:53:39 2025 -0400 [skip ci] copy the artifact file so it can be diffed --- etc/bin/verify-jar-artifacts.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/etc/bin/verify-jar-artifacts.sh b/etc/bin/verify-jar-artifacts.sh index 70e379517f..b911e1bb19 100755 --- a/etc/bin/verify-jar-artifacts.sh +++ b/etc/bin/verify-jar-artifacts.sh @@ -50,8 +50,11 @@ gpg --homedir "${GRAILS_GPG_HOME}" --import "${SCRIPT_DIR}/../../KEYS" REPO_BASE_URL="https://repository.apache.org/content/repositories/${STAGING_REPO_ID}" +# cp the artifacts file to the expected location for reproducible build check +cp "${ARTIFACTS_FILE}" etc/bin/results/ + # Create a temporary directory to work in -WORK_DIR='etc/bin/results/published' +WORK_DIR='etc/bin/results/published_artifacts' mkdir -p $WORK_DIR echo "Using temp dir: $WORK_DIR" cd "$WORK_DIR"
