From 796ec92190a219bd8f850e6144cf4cacc7ef0e39 Mon Sep 17 00:00:00 2001 From: Minseong Park <52368015+pminsung12@users.noreply.github.com> Date: Fri, 19 Jul 2024 14:33:10 +0900 Subject: [PATCH] =?UTF-8?q?[BSVR-138]=20ncp=20object=20storage=20=ED=99=98?= =?UTF-8?q?=EA=B2=BD=EB=B3=80=EC=88=98=20=EC=B6=94=EA=B0=80=20(#54)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: ncp object storage 환경변수 추가 * feat: object storage api 정상 작동 테스트 완료 -> action 트리거 롤백 --- .github/workflows/dev-build-and-deploy.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dev-build-and-deploy.yaml b/.github/workflows/dev-build-and-deploy.yaml index 054f2ad4..eb4806b1 100644 --- a/.github/workflows/dev-build-and-deploy.yaml +++ b/.github/workflows/dev-build-and-deploy.yaml @@ -116,13 +116,15 @@ jobs: -e OAUTH_KAUTHTOKENURLHOST=${{ secrets.KAUTH_TOKEN_URL_HOST }} \ -e OAUTH_KAUTHUSERURLHOST=${{ secrets.KAUTH_USER_URL_HOST }} \ -e SPRING_JPA_HIBERNATE_DDL_AUTO=validate \ + -e NCP_OBJECT_STORAGE_ACCESS_KEY=${{ secrets.NCP_OBJECT_STORAGE_ACCESS_KEY }} \ + -e NCP_OBJECT_STORAGE_SECRET_KEY=${{ secrets.NCP_OBJECT_STORAGE_SECRET_KEY }} \ -e TZ=Asia/Seoul \ ${{ secrets.DOCKERHUB_USERNAME }}/spot-server:dev-${{ github.sha }} docker system prune -af create-release: needs: [ build-and-test, deploy ] # deploy job이 성공적으로 완료된 후에만 실행 - if: github.event.pull_request.merged == true # PR이 merge된 경우에만 실행 +# if: github.event.pull_request.merged == true # PR이 merge된 경우에만 실행 runs-on: ubuntu-latest permissions: contents: write