Skip to content

Commit 471ef6b

Browse files
authored
docs: remove -src suffix from artifact name (#1743)
## Which issue does this PR close? - Closes #. ## What changes are included in this PR? Context: #1631 (comment) Aligns with other subproject's artifact naming convention ## Are these changes tested?
1 parent 32ecab0 commit 471ef6b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

scripts/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ python3 ./scripts/dependencies.py check
4747

4848
# Generate and verify artifacts
4949
echo "> Start package"
50-
git archive --format=tar.gz --output="dist/apache-iceberg-rust-$release_version-src.tar.gz" --prefix="apache-iceberg-rust-$release_version-src/" --add-file=Cargo.toml "$git_branch"
50+
git archive --format=tar.gz --output="dist/apache-iceberg-rust-$release_version.tar.gz" --prefix="apache-iceberg-rust-$release_version/" --add-file=Cargo.toml "$git_branch"
5151

5252
cd dist
5353

website/src/release.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ After GitHub Release has been created, we can start to create ASF Release.
143143
- This script will do the following things:
144144
- Create a new branch named by `release-${release_version}` from the tag
145145
- Generate the release candidate artifacts under `dist`, including:
146-
- `apache-iceberg-rust-${release_version}-src.tar.gz`
147-
- `apache-iceberg-rust-${release_version}-src.tar.gz.asc`
148-
- `apache-iceberg-rust-${release_version}-src.tar.gz.sha512`
146+
- `apache-iceberg-rust-${release_version}.tar.gz`
147+
- `apache-iceberg-rust-${release_version}.tar.gz.asc`
148+
- `apache-iceberg-rust-${release_version}.tar.gz.sha512`
149149
- Check the header of the source code. This step needs docker to run.
150150

151151
This script will create a new release under `dist`.
@@ -155,9 +155,9 @@ For example:
155155
```shell
156156
> tree dist
157157
dist
158-
├── apache-iceberg-rust-0.2.0-src.tar.gz
159-
├── apache-iceberg-rust-0.2.0-src.tar.gz.asc
160-
└── apache-iceberg-rust-0.2.0-src.tar.gz.sha512
158+
├── apache-iceberg-rust-0.2.0.tar.gz
159+
├── apache-iceberg-rust-0.2.0.tar.gz.asc
160+
└── apache-iceberg-rust-0.2.0.tar.gz.sha512
161161
```
162162

163163
### Upload artifacts to the SVN dist repo
@@ -325,7 +325,7 @@ After downloading them, here are the instructions on how to verify them.
325325
```bash
326326
gpg --verify apache-iceberg-rust-*.tar.gz.asc
327327
```
328-
Expects: `"apache-iceberg-rust-0.7.0-src.tar.gz: OK"`
328+
Expects: `"apache-iceberg-rust-0.7.0.tar.gz: OK"`
329329
* Verify the checksums:
330330

331331
```bash

0 commit comments

Comments
 (0)