diff --git a/.github/workflows/build-publish-docker.yml b/.github/workflows/build-publish-docker.yml index dc8bf42..e8c2907 100644 --- a/.github/workflows/build-publish-docker.yml +++ b/.github/workflows/build-publish-docker.yml @@ -33,14 +33,18 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Build and push uses: docker/build-push-action@v3 with: context: . file: ./src/Services/Flight/Dockerfile push: true - tags: meysamh66/booking-microservices-flight:${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} + tags: ${{ secrets.DOCKERHUB_USERNAME }}/booking-microservices-flight:latest +# meysamh66/booking-microservices-flight:${{ steps.meta.outputs.tags }} +# labels: ${{ steps.meta.outputs.labels }} # - name: Build image