Skip to content

Commit

Permalink
Create be-prod-cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hangillee authored Aug 20, 2024
1 parent 3a1e291 commit db3dae0
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/be-prod-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: BE CD PROD

on:
push:
branches: [ production/be ]

jobs:
build:
runs-on: ubuntu-latest

defaults:
run:
shell: bash
working-directory: ./backend

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'

- name: Make keystore file
run: echo "${{secrets.PROD_SSL_KEYSTORE}}" | base64 --decode > ./src/main/resources/keystore.p12

- name: Gradle Caching
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: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew clean build

- name: Sign in Dockerhub
uses: docker/login-action@v1
with:
username: ${{secrets.DOCKER_USERNAME}}
password: ${{secrets.DOCKER_PASSWORD}}

- name: Build the Docker image
run: docker build -f ./Dockerfile --platform linux/arm64 --no-cache -t touroot/touroot-api:prod .

- name: Push the Docker Image to Dockerhub
run: docker push touroot/touroot-api:prod

deploy:
needs: build
runs-on: [self-hosted, prod]

steps:
- name: Docker Image pull
run: sudo docker pull touroot/touroot-api:prod

- name: Docker Compose up
run: sudo docker compose -f ~/docker/api-docker.yml up -d

0 comments on commit db3dae0

Please sign in to comment.