Skip to content

Commit

Permalink
fix(CI/CD) : staging,prod workflow 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
0-tae committed Feb 28, 2025
1 parent a4a48bf commit 7c522cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/DOCKER-CD-PROD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,10 @@ jobs:
run: |
mkdir -p ./src/main/resources && cd $_
touch ./application.yml
echo "${{ secrets.YML }}" > ./application.yml
echo "${{ secrets.PROD_YML }}" > ./application.yml
cat ./application.yml
working-directory: ${{ env.working-directory }}

- name: application-prod.yml 생성
run: |
cd ./src/main/resources
touch ./application-prod.yml
echo "${{ secrets.PROD_YML }}" > ./application-prod.yml
working-directory: ${{ env.working-directory }}

- name: aws-config.yml 생성
run: |
cd ./src/main/resources
Expand Down
9 changes: 1 addition & 8 deletions .github/workflows/DOCKER-CD-STAGING.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,10 @@ jobs:
run: |
mkdir -p ./src/main/resources && cd $_
touch ./application.yml
echo "${{ secrets.YML }}" > ./application.yml
echo "${{ secrets.STAGING_YML }}" > ./application.yml
cat ./application.yml
working-directory: ${{ env.working-directory }}

- name: application-staging.yml 생성
run: |
cd ./src/main/resources
touch ./application-staging.yml
echo "${{ secrets.STAGING_YML }}" > ./application-staging.yml
working-directory: ${{ env.working-directory }}

- name: aws-config.yml 생성
run: |
cd ./src/main/resources
Expand Down

0 comments on commit 7c522cf

Please sign in to comment.