From 08557e2e3a49eeb370d78c3391a3b18e85ce3600 Mon Sep 17 00:00:00 2001 From: "DESKTOP-E7L6HLO\\Noyan" Date: Thu, 18 Jul 2024 09:52:43 +0300 Subject: [PATCH] Task 41 : Add CI/CD for Auth Service --- .github/workflows/auth-service-ci-cd.yml | 65 ++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 .github/workflows/auth-service-ci-cd.yml diff --git a/.github/workflows/auth-service-ci-cd.yml b/.github/workflows/auth-service-ci-cd.yml new file mode 100644 index 0000000..8dcc1c0 --- /dev/null +++ b/.github/workflows/auth-service-ci-cd.yml @@ -0,0 +1,65 @@ +name: CI/CD Pipeline for Auth Servive + +on: + workflow_run: + workflows: ["CI/CD Pipeline for Eureka Server"] + branches: [ "main" ] + types: + - completed + +jobs: + test: + name: Unit Test + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up JDK 21 + uses: actions/setup-java@v3 + with: + java-version: '21' + distribution: 'temurin' + cache: 'maven' + + - name: Cache Maven packages + uses: actions/cache@v3 + with: + path: ~/.m2 + key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} + restore-keys: ${{ runner.os }}-m2 + + - name: Build with Maven + run: mvn -B -f authservice/pom.xml clean install -DskipTests + + - name: Run Tests + run: mvn -B -f authservice/pom.xml test + + build-and-push: + name: Build and Push Docker Image + runs-on: ubuntu-latest + needs: test + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up JDK 21 + uses: actions/setup-java@v3 + with: + java-version: '21' + distribution: 'temurin' + cache: 'maven' + + - name: Build with Maven + run: mvn -B -f authservice/pom.xml clean package + + - name: Dockerize & Push Docker Image + uses: mr-smithers-excellent/docker-build-push@v6 + with: + image: noyandocker/springbootmicroserviceswithsecurityauthservice + tags: latest + registry: docker.io + dockerfile: authservice/Dockerfile + directory: authservice + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }}