This is an automated email from the ASF dual-hosted git repository.
tison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-fury.git
The following commit(s) were added to refs/heads/main by this push:
new 9cf495b9 fix(release): make incubating after version in release
artifacts (#1552)
9cf495b9 is described below
commit 9cf495b9ffc7c9cb1b6b4485d2c27b73822a14f8
Author: Shawn Yang <[email protected]>
AuthorDate: Sun Apr 21 08:19:17 2024 +0800
fix(release): make incubating after version in release artifacts (#1552)
---
ci/release.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ci/release.py b/ci/release.py
index d3993081..e617e9c4 100644
--- a/ci/release.py
+++ b/ci/release.py
@@ -43,11 +43,11 @@ def build(v: str):
os.mkdir("dist")
subprocess.check_call(f"git checkout releases-{v}", shell=True)
branch = f"releases-{v}"
- src_tar = f"apache-fury-incubating-{v}-src.tar.gz"
+ src_tar = f"apache-fury-{v}-incubating-src.tar.gz"
subprocess.check_call(
f"git archive --format=tar.gz "
f"--output=dist/{src_tar} "
- f"--prefix=apache-fury-incubating-{v}-src/ {branch}",
+ f"--prefix=apache-fury-{v}-incubating-src/ {branch}",
shell=True,
)
os.chdir("dist")
@@ -60,7 +60,7 @@ def build(v: str):
def verify(v):
- src_tar = f"apache-fury-incubating-{v}-src.tar.gz"
+ src_tar = f"apache-fury-{v}-incubating-src.tar.gz"
subprocess.check_call(f"gpg --verify {src_tar}.asc {src_tar}", shell=True)
logger.info("Verified signature")
subprocess.check_call(f"sha512sum --check {src_tar}.sha512", shell=True)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]