diff --git a/.github/workflows/docker-build-push.yaml b/.github/workflows/docker-build-push.yaml index 5c77dcd..458ece1 100644 --- a/.github/workflows/docker-build-push.yaml +++ b/.github/workflows/docker-build-push.yaml @@ -23,4 +23,13 @@ jobs: uses: docker/build-push-action@v5 with: push: true - tags: iliusa77/hello-world-python:${{ inputs.docker_tag }} \ No newline at end of file + tags: iliusa77/hello-world-python:${{ inputs.docker_tag }} + - + name: Run + uses: addnab/docker-run-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + registry: docker.io + image: iliusa77/hello-world-python:${{ inputs.docker_tag }} + run: curl localhost:8080 \ No newline at end of file