We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ac64bc commit 71570f9Copy full SHA for 71570f9
.github/actions/gen-install-scripts/entrypoint.sh
@@ -16,6 +16,10 @@
16
17
set -xeou pipefail
18
19
+# copy the initial bundle dir state from teh latest released bundle
20
+latest_release_dir=$(find releases -mindepth 1 -maxdepth 1 -type d -printf '%f\n' | sort -Vr | head -n 1)
21
+cp -rf "releases/${latest_release_dir}/bundle" .
22
+
23
target_dir="deploy"
24
clusterwide_dir="${target_dir}/clusterwide"
25
namespaced_dir="${target_dir}/namespaced"
0 commit comments