diff --git a/.github/workflows/docker-build-push.yml b/.github/workflows/docker-build-push.yml index 23bd67a..8a7bab2 100644 --- a/.github/workflows/docker-build-push.yml +++ b/.github/workflows/docker-build-push.yml @@ -27,5 +27,6 @@ jobs: - name: Build and Push Docker image run: | IMAGE_TAG=${{ steps.extract-version.outputs.version }} - docker build -t /:${{ IMAGE_TAG }} . - docker push /:${{ IMAGE_TAG }} + docker build -t /:${IMAGE_TAG} . + docker push /:${IMAGE_TAG} + diff --git a/CHANGELOG.md b/CHANGELOG.md index 2970124..9a2a2ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.5.0] - 2023-07- +## [1.5.0] - 2023-07-19 - [ADDED] Dockerized application. - [ADDED] GitHub action to build and deploy Docker image to Docker Hub.