Merge branch 'production/be' into develop/be #143
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: BE CD DEV | |
on: | |
push: | |
branches: [ develop/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.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 . | |
- name: Push the Docker Image to Dockerhub | |
run: docker push touroot/touroot-api | |
deploy: | |
needs: build | |
runs-on: [self-hosted, dev] | |
steps: | |
- name: Docker Image pull | |
run: sudo docker pull touroot/touroot-api | |
- name: Docker Compose up | |
run: sudo docker compose -f ~/docker/touroot-docker.yml up -d |