From b58ec6a1e957647b2d102241b14d29621bba0a7c Mon Sep 17 00:00:00 2001 From: choiyounji <100260416+choiyounji@users.noreply.github.com> Date: Thu, 2 Nov 2023 00:17:46 +0900 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 24c5620..865e60f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,6 +20,12 @@ jobs: with: java-version: '11' distribution: 'temurin' + + - name: Set up application.yml + - uses: actions/checkout@v3 + - run: touch ./src/main/resources/application.yml + - run: echo "${{ secrets.APPLICATION }}" > ./src/main/resources/application.yml + - run: cat ./src/main/resources/application.yml - name: Grant execute permission for gradlew run: chmod +x gradlew