fix (Actions): added tagging to container

This commit is contained in:
darkicewolf50 2024-12-21 15:19:15 -07:00
parent 354b840f24
commit f7ca1d810f

View File

@ -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
@ -63,6 +63,9 @@ jobs:
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
if: ${{ steps.docker-login.outcome == 'success' && steps.docker-build.outcome == 'success' }}