Skip to content

[FIX] Swagger Profile에 따라 권한 분기 처리 #196

[FIX] Swagger Profile에 따라 권한 분기 처리

[FIX] Swagger Profile에 따라 권한 분기 처리 #196

Workflow file for this run

name: ci
on:
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
shell: bash
- name: Create application.yml
run: |
pwd
touch src/main/resources/application-dev.yml
echo "${{ secrets.APPLICATION_DEV }}" >> src/main/resources/application-dev.yml
cat src/main/resources/application-dev.yml
- name: Build with Gradle
run: ./gradlew build
shell: bash