From cfa251337f946561d5208aad57eb03ff3ebffa6d Mon Sep 17 00:00:00 2001 From: Maulana Sodiqin <53475078+maulanasdqn@users.noreply.github.com> Date: Fri, 30 May 2025 15:40:41 +0700 Subject: [PATCH] Create deploy-to-ancikri.yml --- .github/workflows/deploy-to-ancikri.yml | 65 +++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 .github/workflows/deploy-to-ancikri.yml diff --git a/.github/workflows/deploy-to-ancikri.yml b/.github/workflows/deploy-to-ancikri.yml new file mode 100644 index 0000000..b18d530 --- /dev/null +++ b/.github/workflows/deploy-to-ancikri.yml @@ -0,0 +1,65 @@ +name: Deploy to Ancikri + +on: + push: + branches: + - develop + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Rust + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + + - name: Build the project + run: cargo build --release + + - name: Stop service on VPS before upload + uses: appleboy/ssh-action@v0.1.7 + with: + host: ${{ secrets.VPS_ANCIKRI_IP }} + username: ${{ secrets.VPS_ANCIKRI_USER }} + key: ${{ secrets.VPS_ANCIKRI_SSH_KEY }} + port: ${{ secrets.VPS_ANCIKRI_PORT }} + script: | + set -e + echo "Stopping the service before uploading the binary" + sudo systemctl stop imphnen-backend-service + + - name: Upload artifact to VPS + uses: appleboy/scp-action@v0.1.7 + with: + host: ${{ secrets.VPS_ANCIKRI_IP }} + username: ${{ secrets.VPS_ANCIKRI_USER }} + key: ${{ secrets.VPS_ANCIKRI_SSH_KEY }} + port: ${{ secrets.VPS_ANCIKRI_PORT }} + source: ./target/release/* + target: /opt/imphnen-backend-service/imphnen-backend-service + rm: true + overwrite: true + + - name: Deploy to server + uses: appleboy/ssh-action@v0.1.7 + with: + host: ${{ secrets.VPS_ANCIKRI_IP }} + username: ${{ secrets.VPS_ANCIKRI_USER }} + key: ${{ secrets.VPS_ANCIKRI_SSH_KEY }} + port: ${{ secrets.VPS_ANCIKRI_PORT }} + script: | + set -e + + echo "Restarting the service" + + sudo systemctl daemon-reload + + sudo systemctl restart imphnen-backend-service + + echo "Deployment completed successfully"