v1
All checks were successful
Push to main / Reset-Version-Tag (push) Successful in 7s

This commit is contained in:
2026-01-22 09:58:38 -07:00
commit dd2e6e4083
4 changed files with 51 additions and 0 deletions

8
action.sh Normal file
View File

@@ -0,0 +1,8 @@
### INSTALL DOCKER
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
### LOGIN TO CONTAINER REPO
echo $INPUT_LOGIN_PASS | docker login $INPUT_CONTAINER_DOMAIN -u $INPUT_LOGIN_USER --password-stdin
docker build -t $INPUT_CONTAINER_DOMAIN/$INPUT_CONTAINER_NAME:$INPUT_CONTAINER_TAG --no-cache .
docker push $INPUT_CONTAINER_DOMAIN/$INPUT_CONTAINER_NAME:$INPUT_CONTAINER_TAG