Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
van1164 committed Jun 8, 2024
2 parents 81ea4eb + b140c92 commit 6580cf0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,20 @@ jobs:
# 2. Spring Boot 애플리케이션 빌드
- name: Build with Gradle
run: |
touch video/src/main/resources/application-oauth.properties
touch video/src/main/resources/application-prod.properties
touch video/src/main/resources/application.properties
echo "${{ secrets.APPLICATION_PROD }}" > video/src/main/resources/application-prod.properties
echo "${{ secrets.APPLICATION_OAUTH }}" > video/src/main/resources/application-oauth.properties
echo "${{ secrets.APPLICATION_PROPERTIES }}" > video/src/main/resources/application.properties
touch app/src/main/resources/application-oauth.properties
touch app/src/main/resources/application-prod.properties
touch app/src/main/resources/application.properties
echo "${{ secrets.APPLICATION_PROD }}" > app/src/main/resources/application-prod.properties
echo "${{ secrets.APPLICATION_OAUTH }}" > app/src/main/resources/application-oauth.properties
echo "${{ secrets.APPLICATION_PROPERTIES }}" > app/src/main/resources/application.properties
echo "${{ secrets.UTILL_APPLICATION_PROPERTIES }}" > util/src/main/resources/application.properties
cat util/src/main/resources/application.properties
chmod +x gradlew
./gradlew clean video:build --exclude-task test
./gradlew clean app:build --exclude-task test
ls
pwd
docker build -t ${{ secrets.DOCKERHUB_USERNAME }}/streaming:latest .
Expand Down

0 comments on commit 6580cf0

Please sign in to comment.