Skip to content

[FIX] cors μ„€μ • λ³€κ²½ -#85 #48

[FIX] cors μ„€μ • λ³€κ²½ -#85

[FIX] cors μ„€μ • λ³€κ²½ -#85 #48

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "dev" ]
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:
distribution: 'corretto'
java-version: '17'
- name: create application.yml
run: |
## create application.yml
mkdir ./cakey-api/src/main/resources
cd ./cakey-api/src/main/resources
# application.yml 파일 생성
touch ./application.yml
# GitHub-Actions μ—μ„œ μ„€μ •ν•œ 값을 application.yml νŒŒμΌμ— μ“°κΈ°
echo "${{ secrets.CI_APPLICATION }}" >> ./application.yml
# application.yml 파일 확인
cat ./application.yml
shell: bash
- name: build
run: |
chmod +x gradlew
./gradlew build -x test
shell: bash