Skip to content

Commit

Permalink
Merge pull request #9 from Gongjakso/chore/cicd
Browse files Browse the repository at this point in the history
chore: AWS 배포 파이프라인 설정
  • Loading branch information
dl-00-e8 authored Jan 21, 2024
2 parents c3dce35 + 40cc3d5 commit 64129e7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,11 @@ jobs:
# secret.yml 반영
- name: Make application-secret.yml
run: |
cd ./src/main/resources
touch ./application.yml
echo "${{ secrets.APPLICATION_SECRET}}" > ./application-secret.yml
cd ./src/main
mkdir resources
cd ./resources
touch touch ./application.yml
echo "${{ secrets.APPLICATION_SECRET}}" > ./application.yml
shell: bash

# release.yml 반영
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
mkdir resources
cd ./resources
touch touch ./application.yml
echo "${{ secrets.GCP_APPLICATION_RELEASE}}" > ./application.yml
echo "${{ secrets.APPLICATION_SECRET}}" > ./application.yml
shell: bash

# Gradle clean bootJar
Expand Down

0 comments on commit 64129e7

Please sign in to comment.