diff --git a/.github/workflows/docker-build-push-dockerhub.yml b/.github/workflows/docker-build-push-dockerhub.yml index 0b2c373..3978b58 100644 --- a/.github/workflows/docker-build-push-dockerhub.yml +++ b/.github/workflows/docker-build-push-dockerhub.yml @@ -1,9 +1,11 @@ # This is a basic workflow to help you get started with Actions -name: Build and push image to GitHub container registry +name: Build and push image to DockerHub # Controls when the workflow will run on: push + +# Leaving in example for releases. Initially we simply push to 'latest' # on: # release: # types: [ created ] @@ -49,7 +51,7 @@ jobs: file: ./Dockerfile push: true # The test image is /docker and is private. final image will be /calendso and public - tags: docker.io/${{ secrets.DOCKER_HUB_USERNAME }}/docker:latest + tags: docker.io/${{ secrets.DOCKER_HUB_USERNAME }}/calendso:latest build-args: | BASE_URL=http://localhost:3000 NEXT_PUBLIC_APP_URL=http://localhost:3000