ci: revert build devcontainers step

This commit is contained in:
Gabriel Arazas 2025-04-18 15:45:43 +08:00
parent ac418a3f5b
commit ad26ff520a
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360

View File

@ -22,5 +22,5 @@ jobs:
for image_archive in $(< build_paths); do for image_archive in $(< build_paths); do
CONTAINER_TAG=$(echo $image_archive | awk 'match($0, /docker-image-(\S+).tar.gz/, arr) {print arr[1]}') CONTAINER_TAG=$(echo $image_archive | awk 'match($0, /docker-image-(\S+).tar.gz/, arr) {print arr[1]}')
skopeo copy \ skopeo copy \
"docker-archive:${image_archive}" "docker://ghcr.io/${{ github.repository }}" "docker-archive:${image_archive}" "docker://ghcr.io/${{ github.repository }}:$CONTAINER_TAG"
done done