We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6dfd81 commit d730aafCopy full SHA for d730aaf
1 file changed
registry.sh
@@ -140,6 +140,12 @@ connect_registry() {
140
}
141
142
config_registry_for_nodes() {
143
+ if [ -f "$GITHUB_PATH" ]; then
144
+ while IFS= read -r line; do
145
+ export PATH="$line:$PATH"
146
+ done < "$GITHUB_PATH"
147
+ fi
148
+
149
# Reference: https://github.com/containerd/containerd/blob/main/docs/hosts.md
150
REGISTRY_DIR="/etc/containerd/certs.d/${registry_name}:${registry_port}"
151
0 commit comments