We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb89078 commit 3e62547Copy full SHA for 3e62547
1 file changed
.github/ci/package-release.sh
@@ -104,18 +104,13 @@ archive_path="$repo_root/$output_dir/$artifact_name.$archive_format"
104
105
rm -rf "$staging_dir"
106
rm -f "$archive_path"
107
-mkdir -p "$staging_dir/docs"
108
109
cp "$binary_path" "$staging_dir/$binary_name"
110
111
for relative_path in host-bridge.toml README.md LICENSE; do
112
cp "$repo_root/$relative_path" "$staging_dir/$relative_path"
113
done
114
115
-for relative_path in docs/configuration.md docs/usage.md; do
116
- cp "$repo_root/$relative_path" "$staging_dir/$relative_path"
117
-done
118
-
119
case "$archive_format" in
120
tar.gz)
121
tar -czf "$archive_path" -C "$repo_root/$output_dir" "$artifact_name"
0 commit comments