booking-microservices/.github/workflows/build-publish-docker.yml
meysamhadeli 449d2a1fb8 .
2023-01-25 01:26:26 +03:30

59 lines
2.3 KiB
YAML

name: build-publish-docker
on:
push:
branches: [ develop ]
pull_request:
jobs:
build-and-push-docker-image:
name: Build and Publish Docker image to DockerHub
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 'lts/*'
## With the above semantic-release configuration, will create a release and push the dist/index.js file as well as all the tags required
- name: Semantic Release Version
id: semantic-version
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Semantic Release Versions Outputs
run: |
echo ${{ steps.semantic-version.outputs.semantic_nextRelease_version }}
echo ${{ steps.semantic-version.outputs.semantic_nextRelease_channel }}
echo ${{ steps.semantic-version.outputs.semantic_nextRelease_gitTag }}
echo ${{ steps.semantic-version.outputs.semantic_lastRelease_version }}
echo ${{ steps.semantic-version.outputs.semantic_lastRelease_channel }}
echo ${{ steps.semantic-version.outputs.semantic_lastRelease_gitTag }}
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build image
run: |
docker build -t meysamh66/booking-microservices-flight:latest -f "${{ github.workspace }}/src/Services/Flight/Dockerfile" .
docker build -t meysamh66/booking-microservices-identity:latest -f "${{ github.workspace }}/src/Services/Identity/Dockerfile" .
docker build -t meysamh66/booking-microservices-passenger:latest -f "${{ github.workspace }}/src/Services/Passenger/Dockerfile" .
docker build -t meysamh66/booking-microservices-booking:latest -f "${{ github.workspace }}/src/Services/Booking/Dockerfile" .
- name: Publish image
run: |
docker push meysamh66/booking-microservices-flight:latest
docker push meysamh66/booking-microservices-identity:latest
docker push meysamh66/booking-microservices-passenger:latest
docker push meysamh66/booking-microservices-booking:latest