Skip to content

Commit

Permalink
Feat : Github actions for docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
saimanaswini-k committed Aug 8, 2024
1 parent d62ea21 commit 396ebcb
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Build and Deploy
on:
push:
tags:
- '*'
branches:
- master
- release-*

jobs:
test-docker-build:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'

- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Restore Maven cache
uses: actions/cache@v3
with:
path: ~/.m2
key: groups-dependency-cache-${{ hashFiles('**/pom.xml') }}
restore-keys: |
groups-dependency-cache-
- name: Build and Run test cases
run: mvn clean install

- name: Save the build artifact
run: mvn -f service/pom.xml play2:dist

- name: Store build artifact
uses: actions/upload-artifact@v3
with:
name: group-service
path: service/target/group-service-1.0.0-dist.zip

- name: Checkout code
uses: actions/checkout@v4

- name: Download build artifact
uses: actions/download-artifact@v3
with:
name: group-service
path: ./service/target

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and Push Docker Image
uses: docker/build-push-action@v5
with:
context: ./service/target
file: ./Dockerfile
push: true
tags: |
${{ vars.DOCKERHUB_USERNAME }}/groups_service:${{ github.ref_name }}

0 comments on commit 396ebcb

Please sign in to comment.