You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
declare -A duplicate_images
declare -A temp_map
while IFS= read -r line || [ -n "$line" ]; do
# 忽略空行与注释
[[ -z "$line" ]] && continue
if echo "$line" | grep -q '^\s*#'; then
continue
fi
done < images.txt
shell: /usr/bin/bash -e {0}
env:
ALIYUN_REGISTRY:
ALIYUN_NAME_SPACE:
ALIYUN_REGISTRY_USER:
ALIYUN_REGISTRY_PASSWORD:
Error: Cannot perform an interactive login from a non TTY device
Error: Process completed with exit code 1.
还需要在哪里设置呢?
The text was updated successfully, but these errors were encountered:
按照作者步骤,在执行github action时报错如下:
Run docker login -u $ALIYUN_REGISTRY_USER -p $ALIYUN_REGISTRY_PASSWORD $ALIYUN_REGISTRY
docker login -u $ALIYUN_REGISTRY_USER -p $ALIYUN_REGISTRY_PASSWORD $ALIYUN_REGISTRY
数据预处理,判断镜像是否重名
declare -A duplicate_images
declare -A temp_map
while IFS= read -r line || [ -n "$line" ]; do
# 忽略空行与注释
[[ -z "$line" ]] && continue
if echo "$line" | grep -q '^\s*#'; then
continue
fi
done < images.txt
while IFS= read -r line || [ -n "$line" ]; do
# 忽略空行与注释
[[ -z "$line" ]] && continue
if echo "$line" | grep -q '^\s*#'; then
continue
fi
done < images.txt
shell: /usr/bin/bash -e {0}
env:
ALIYUN_REGISTRY:
ALIYUN_NAME_SPACE:
ALIYUN_REGISTRY_USER:
ALIYUN_REGISTRY_PASSWORD:
Error: Cannot perform an interactive login from a non TTY device
Error: Process completed with exit code 1.
还需要在哪里设置呢?
The text was updated successfully, but these errors were encountered: