name: Publish Docker run-name: ${{ github.actor }} is building ${{ github.repository }} on: push: branches: - main jobs: Publish-Docker: runs-on: ubuntu-latest steps: - name: Check out repository code uses: https://github.com/actions/checkout@v3 - name: Set up Docker Buildx uses: https://github.com/docker/setup-buildx-action@v2 - name: Build and push uses: https://github.com/docker/build-push-action@v4 with: context: . file: ./Dockerfile push: false tags: ${{ github.repository }}:latest