diff --git a/.github/workflows/ci-and-deploy-automation.yml b/.github/workflows/ci-and-deploy-automation.yml new file mode 100644 index 0000000..a647b0d --- /dev/null +++ b/.github/workflows/ci-and-deploy-automation.yml @@ -0,0 +1,53 @@ +name: Docker Image CI + +on: + push: + branches: [ "main", "dev" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Set Java + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + + - name: Setup Gradle + uses: gradle/gradle-build-action@v2 + + - name: Grant execute permission for gradlew + run: chmod +x ./server/gradlew + + - name: Run build with Gradle Wrapper + run: ./gradlew clean build + working-directory: ./server + + - name: Send file to the server + uses: appleboy/scp-action@master + with: + host: ${{ secrets.HOST }} + username: ${{ secrets.USER }} + port: ${{ secrets.PORT }} + key: ${{ secrets.KEY }} + source: "./build/libs/*.jar" + target: download + + # 원격서버 배포 스크립트 실행 + - name: Deploy remote ssh commands using password + uses: appleboy/ssh-action@master + with: + host: ${{ secrets.HOST }} + username: ${{ secrets.USER }} + port: ${{ secrets.PORT }} + key: ${{ secrets.KEY }} + script_stop: true + script: | + sh scrabler/deploy-scrabler-server.sh +