From ca4b45db683a9008c77c392d668f89aafc07c166 Mon Sep 17 00:00:00 2001
From: Stenio Wagner <stenio.wagner1@gmail.com>
Date: Sat, 17 Feb 2024 23:51:16 -0300
Subject: [PATCH] chore: removing deploy ci-step

---
 .github/workflows/ci.yaml | 21 ---------------------
 1 file changed, 21 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index ce193ac..81f9aed 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -31,24 +31,3 @@ jobs:
 
       - name: Building
         run: npm run build
-
-  deploy:
-    name: Deploy to production
-    if: success() && github.ref == 'refs/heads/master'
-    needs: [code_check]
-    runs-on: ubuntu-latest
-
-    steps:
-      - uses: actions/checkout@v4
-      - uses: actions/setup-node@v4
-        with:
-          node-version: 18
-
-      - name: Building
-        run: npm run build
-
-      - name: Deploy to production
-        uses: johnbeynon/render-deploy-action@v0.0.8
-        with:
-          service-id: ${{ secrets.SERVICE_ID }}
-          api-key: ${{ secrets.RENDER_API_KEY }}