Skip to content

Commit

Permalink
Create docker_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
donghyuun authored Jun 29, 2024
1 parent 3a7d6f2 commit 9dcf405
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Build and Push Docker Imamge

on:
push:
branches:
- main

jobs:
build-and-push:
name: Build and Push Docker Image
runs-on: ubuntu-latest

steps: # 레포지토리 체크아웃
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up JDK 17 # JDK 17 설정
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '17'

- name: Build with Gradle # Gradle 빌드
run: ./gradlew build -x test

- name: Set up Docker Buildx # Docker Buildx 설정
uses: docker/setup-buildx-aciton@v2

- name: Login to Docker Hub # Docker Hub 로그인
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and Push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/spring-app:version1

0 comments on commit 9dcf405

Please sign in to comment.