Skip to content
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
echo "RC=${rc}"
- name: Archive
run: |
id="apache-iceberg-go-${VERSION}-rc${RC}"
tar_gz="${id}.tar.gz"
id="apache-iceberg-go-${VERSION}"
tar_gz="${id}-rc${RC}.tar.gz"
echo "TAR_GZ=${tar_gz}" >> ${GITHUB_ENV}
git archive HEAD --prefix "${id}/" --output "${tar_gz}"
sha512sum "${tar_gz}" > "${tar_gz}.sha512"
Expand Down
3 changes: 2 additions & 1 deletion dev/release/verify_rc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ RC="$2"
ICEBERG_DIST_BASE_URL="https://downloads.apache.org/iceberg"
DOWNLOAD_RC_BASE_URL="https://dist.apache.org/repos/dist/dev/iceberg/apache-iceberg-go-${VERSION}-rc${RC}"
ARCHIVE_BASE_NAME="apache-iceberg-go-${VERSION}-rc${RC}"
SOURCE_DIR_NAME="apache-iceberg-go-${VERSION}"

: "${VERIFY_DEFAULT:=1}"
: "${VERIFY_DOWNLOAD:=${VERIFY_DEFAULT}}"
Expand Down Expand Up @@ -193,7 +194,7 @@ import_gpg_keys
fetch_archive
ensure_source_directory
ensure_go
pushd "${ARCHIVE_BASE_NAME}"
pushd "${SOURCE_DIR_NAME}"
test_source_distribution
popd

Expand Down
Loading