Skip to content

Commit

Permalink
Test: CI 파이프라인 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
tioon committed Apr 22, 2024
1 parent ccbefba commit 741d03a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,23 @@ jobs:
java-version: '17'
distribution: 'adopt'

- name: Move to root
run: |
cd baebae-BE
- name: Create and configure application.yml
run: |
echo "${{ secrets.APPLICATION_YML }}" > baebae-BE/src/main/resources/application.yml
echo "${{ secrets.APPLICATION_DEPLOY_YML }}" > baebae-BE/src/main/resources/application-deploy.yml
echo "${{ secrets.APPLICATION_YML }}" > src/main/resources/application.yml
echo "${{ secrets.APPLICATION_DEPLOY_YML }}" > src/main/resources/application-deploy.yml
- name: Build with Gradle
run: |
cd baebae-BE
chmod +x ./gradlew
./gradlew build
- name: Create deployment package
run: |
ls
zip -r deployment-package.zip build/libs/baebae-BE-0.0.1-SNAPSHOT.jar
- name: Upload deployment package
Expand Down

0 comments on commit 741d03a

Please sign in to comment.