Compare commits

...

3 Commits
master ... v14

Author SHA1 Message Date
Sambo Chea daef0ef378
Removed default image tag for version 14 2021-12-23 09:30:04 +07:00
Sambo Chea db3b875005
Update docker-publish.yml 2021-09-26 18:51:12 +07:00
Sambo Chea 82b78116e9
Update docker-publish.yml 2021-07-14 15:04:32 +07:00
2 changed files with 4 additions and 8 deletions

View File

@ -1,8 +1,8 @@
name: Docker CI
on:
release:
types: [created]
push:
branches: [ main ]
jobs:
docker:
@ -20,7 +20,6 @@ jobs:
-
name: Checkout
uses: actions/checkout@v2
-
name: Build and Push from Makefile
run: |

View File

@ -1,13 +1,10 @@
DOCKER_IMAGE=cubetiq/calpine-node
DOCKER_IMAGE_NAME=${DOCKER_IMAGE}:14
DOCKER_IMAGE=cubetiq/calpine-node:14
build:
@echo 'Starting docker build'
docker build . -t ${DOCKER_IMAGE}
@echo 'Starting docker push'
docker tag ${DOCKER_IMAGE} ${DOCKER_IMAGE_NAME}
docker tag ${DOCKER_IMAGE}
docker push ${DOCKER_IMAGE}
docker push ${DOCKER_IMAGE_NAME}
.PHONY:build