Skip to content

[FEAT/#17] 가입 계정 플랫폼 조회 기능 구현 #11

[FEAT/#17] 가입 계정 플랫폼 조회 기능 구현

[FEAT/#17] 가입 계정 플랫폼 조회 기능 구현 #11

Workflow file for this run

name: Continuous Integration for SOPT makers Authentication Project
on:
pull_request:
branches: [ dev, prod ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: ⚙️ Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: 21
distribution: 'corretto'
cache: gradle
- name: 🤝 Grant execute permission for gradlew
run: chmod +x ./gradlew
shell: bash
- name: 🔑 Create Application Property File
run: |
touch ./gradle.properties
echo "${{ secrets.PROPERTY_GRADLE }}" >> ./gradle.properties
- name: 🧱 Build with Gradle
run: docker build -t app-ci .
shell: bash