Skip to content

[INFRA] CD 구축

[INFRA] CD 구축 #3

Workflow file for this run

name: gohigher-backend-dev-cd
on:
push:
branches:
- develop
pull_request:
branches:
- develop
types: [ opened, synchronize ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Checkout source code
uses: actions/checkout@v4
- name: Set Encryption Key
run: |
echo "encryption-key: $ENCRYPTION_KEY" >> $RESOURCE_PATH
env:
ENCRYPTION_KEY: ${{ secrets.ENCRYPTION_KEY }}
RESOURCE_PATH: './bootstrap/src/main/resources/application.yml'
- name: Change gradlew permission
run: sudo chmod 755 gradlew
- name: Build with Gradle without test
run: ./gradlew clean build -x test