[SCRUM-109] 깃헙 액션 활용한 도커 이미지 빌드 파일 수정 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Image & Push | |
on: | |
push: | |
branches: | |
[ "dev" ] | |
permissions: | |
contents: read | |
jobs: | |
CI-CD: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: cache gradle | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: overwrite application.yml | |
if: | | |
contains(github.ref, 'dev') | |
run: | | |
echo "${{ secrets.APPLICATION_YML }}" > src/main/resources/application.yml | |
- name: build with gradle | |
run: | | |
gradlew build -x test | |
- name: login into docker | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: build docker image & push to docker hub | |
if: contains(github.ref, 'dev') | |
run: | | |
pwd | |
docker build -f Dockerfile --platform linux/amd64 -t ${{ secrets.DOCKERHUB_USERNAME }}/feelin-api:latest . | |
docker push ${{ secrets.DOCKERHUB_USERNAME }}/feelin-api:latest |