Skip to content

Commit

Permalink
test : github 액션 작동해서 자동 배포 테스트5
Browse files Browse the repository at this point in the history
  • Loading branch information
kyumho kim committed Feb 2, 2024
1 parent 092f279 commit ff32fa5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
APPLICATION_MAIL: ${{ secrets.APPLICATION_MAIL_YML }}
APPLICATION_SECURITY: ${{ secrets.APPLICATION_SECURITY_YML }}
run: |
echo "$APPLICATION_YML" > src/main/resources/application.yml
echo "$APPLICATION_DB" > src/main/resources/application-db.yml
echo "$APPLICATION_MAIL" > src/main/resources/application-mail.yml
echo "$APPLICATION_SECURITY" > src/main/resources/application-security.yml
echo "$APPLICATION_YML" | base64 -d > src/main/resources/application.yml
echo "$APPLICATION_DB" | base64 -d > src/main/resources/application-db.yml
echo "$APPLICATION_MAIL" | base64 -d > src/main/resources/application-mail.yml
echo "$APPLICATION_SECURITY" | base64 -d > src/main/resources/application-security.yml
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
Expand Down

0 comments on commit ff32fa5

Please sign in to comment.