Skip to content

Commit

Permalink
deploy : fly.io 재배포 위해 deploy.yml 파일 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kyumho kim committed Apr 13, 2024
1 parent 4922adc commit 0b81c3d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,18 @@ jobs:
env:
APPLICATION_YML: ${{ secrets.APPLICATION_YML }}
APPLICATION_DB: ${{ secrets.APPLICATION_DB_YML }}
APPLICATION_MAIL: ${{ secrets.APPLICATION_MAIL_YML }}
APPLICATION_BATCH: ${{ secrets.APPLICATION_BATCH_YML }}
APPLICATION_COOKIE: ${{ secrets.APPLICATION_COOKIE_YML }}
APPLICATION_OPENAPI: ${{ secrets.APPLICATION_OPENAPI_YML }}
APPLICATION_FILE: ${{ secrets.APPLICATION_FILE_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_BATCH" > src/main/resources/application-batch.yml
echo "$APPLICATION_COOKIE" > src/main/resources/application-cookie.yml
echo "$APPLICATION_OPENAPI" > src/main/resources/application-openapi.yml
echo "$APPLICATION_FILE" > src/main/resources/application-file.yml
echo "$APPLICATION_SECURITY" > src/main/resources/application-security.yml
- uses: superfly/flyctl-actions/setup-flyctl@master
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import java.util.List;
import java.util.Map;

/*
@Component
@RequiredArgsConstructor
@Transactional
Expand All @@ -29,3 +30,4 @@ public void run(ApplicationArguments args) throws Exception {
}
}
}
*/

0 comments on commit 0b81c3d

Please sign in to comment.