Skip to content

Commit 6b68258

Browse files
Fix list of release artifact
This wrong artifact list made a bad release https://github.com/ruby/ruby.wasm/releases/tag/2023-02-01-a
1 parent 6e5e56b commit 6b68258

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tasks/packaging.rake

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,10 @@ NPM_RELEASE_ARTIFACTS = [
9292
"npm-ruby-head-wasm-wasi",
9393
"npm-ruby-3_2-wasm-wasi",
9494
]
95-
RELASE_ARTIFACTS = BUILD_TASKS.map{ |build| build.name } + NPM_RELEASE_ARTIFACTS
95+
RELASE_ARTIFACTS =
96+
BUILD_TASKS.map do |build|
97+
File.basename(build.crossruby.artifact, ".tar.gz")
98+
end + NPM_RELEASE_ARTIFACTS
9699

97100
def release_note
98101
output = <<EOS

0 commit comments

Comments
 (0)