This commit is contained in:
meysamhadeli 2023-01-24 21:25:29 +03:30
parent 4ea076edb7
commit 1bca448b53

View File

@ -19,11 +19,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
# setup Docker buld action
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
@ -33,19 +28,20 @@ jobs:
- name: Login to Github Packages
uses: docker/login-action@v2
with:
registry: ghcr.io
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build image and push to Docker Hub and GitHub Container Registry
uses: docker/build-push-action@v2
with:
# relative path to the place where source code with Dockerfile is located
context: ./src/Services/Flight
# Note: tags has to be all lower-case
tags: |
meysamh66/booking-microservices-flight:latest
ghcr.io/meysamhadeli/booking-microservices/flight:latest
# build on feature branches, push only on develop branch
push: ${{ github.ref == 'refs/heads/develop' }}
- name: Build image
run: |
# docker build -t meysamh66/booking-microservices/flight:latest -f ./src/Services/Flight/Dockerfile .
docker build . -t ${{ env.REGISTRY }}/${{ github.repository }}/flight:latest -f "${{ github.workspace }}/src/Services/Catalogs/Flight/Dockerfile ."
- name: Publish image
run: |
docker push "${{ env.REGISTRY }}/${{ github.repository }}/flight:latest}}"
# docker push meysamh66/booking-microservices/flight:latest