From f7ca1d810f1cbf666c768400d525f79b48fcf2fd Mon Sep 17 00:00:00 2001 From: darkicewolf50 Date: Sat, 21 Dec 2024 15:19:15 -0700 Subject: [PATCH] fix (Actions): added tagging to container --- .github/workflows/Actions.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Actions.yaml b/.github/workflows/Actions.yaml index e3f12db..13c2c8c 100644 --- a/.github/workflows/Actions.yaml +++ b/.github/workflows/Actions.yaml @@ -1,7 +1,7 @@ # name of the workflow. # this is optional. -name: PyLint +name: Interview Cloud Actions # events that will trigger this workflow. # here, we only have "pull_request", so the workflow will run @@ -62,6 +62,9 @@ jobs: - name: build container image # build the container run: docker compose build id: docker-build + + - name: tag container image + run: docker tag darkicewolf50/uofcbajacloud:latest darkicewolf50/uofcbajacloud:latest - name: Upload to Dockerhub run: docker push darkicewolf50/uofcbajacloud:latest