[🎉deploy] CI/CD 테스트 진행 #72
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: DOCKER-CD | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| working-directory: . | |
| steps: | |
| - name: 체크아웃 | |
| uses: actions/checkout@v3 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: application.yml 생성 | |
| run: | | |
| mkdir -p ./src/main/resources && cd $_ | |
| touch ./application.yml | |
| echo "${{ secrets.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.YML_PROD }}" > ./application-prod.yml | |
| working-directory: ${{ env.working-directory }} | |
| - name: 빌드 | |
| run: | | |
| chmod +x gradlew | |
| ./gradlew build -x test | |
| working-directory: ${{ env.working-directory }} | |
| shell: bash | |
| - name: docker 로그인 | |
| uses: docker/setup-buildx-action@v2.9.1 | |
| - name: login docker hub | |
| uses: docker/login-action@v2.2.0 | |
| with: | |
| username: ${{ secrets.DOCKER_LOGIN_USERNAME }} | |
| password: ${{ secrets.DOCKER_LOGIN_ACCESSTOKEN }} | |
| - name: docker image 빌드 및 푸시 | |
| run: | | |
| docker build --platform linux/amd64 -t terningpoint/terning-notification . | |
| docker push terningpoint/terning-notification | |
| working-directory: ${{ env.working-directory }} | |
| cd: | |
| needs: ci | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: docker 컨테이너 실행 | |
| uses: appleboy/ssh-action@master | |
| with: | |
| host: ${{ secrets.SERVER_IP }} | |
| username: ${{ secrets.SERVER_USER }} | |
| key: ${{ secrets.SERVER_KEY }} | |
| script: | | |
| export FIREBASE_SERVICE_KEY_BASE64="${{ secrets.FIREBASE_SERVICE_KEY_BASE64 }}" | |
| echo "[DEBUG] ENV VAR LENGTH: ${#FIREBASE_SERVICE_KEY_BASE64}" | |
| chmod +x ./deploy.sh | |
| ./deploy.sh |