runner-images/build.sh
Tanguy Herbron 487a5b48ae
All checks were successful
Image builder / build (push) Successful in 2m19s
pipeline runner
2023-08-07 11:04:54 +02:00

18 lines
448 B
Bash
Executable File

#!/bin/sh
echo $CONTAINER_TOKEN | docker login git.halis.io -u $GITHUB_ACTOR --password-stdin
IMAGE_NAME=$(echo $GITHUB_SERVER_URL/$GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]' | cut -d '/' -f3-)
for d in ./images/*
do
echo "Loading $d"
for i in $d/*
do
echo "Building $i"
DISTRO=$(echo $i | cut -d '/' -f 3)
docker build -f $i . -t $IMAGE_NAME:$DISTRO
docker push $IMAGE_NAME:$DISTRO
done
done