From 6a547af1394d91d4d840f8fb5de831c0a5097485 Mon Sep 17 00:00:00 2001 From: "Mark Edward M. Gonzales" Date: Wed, 23 Aug 2023 10:00:44 +0800 Subject: [PATCH] Create deploy-to-render.yml --- .github/workflows/deploy-to-render.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/deploy-to-render.yml diff --git a/.github/workflows/deploy-to-render.yml b/.github/workflows/deploy-to-render.yml new file mode 100644 index 0000000..36ea106 --- /dev/null +++ b/.github/workflows/deploy-to-render.yml @@ -0,0 +1,15 @@ +name: Deploy to Render + +on: + push: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Deploy to production + uses: johnbeynon/render-deploy-action@v0.0.8 + with: + service-id: ${{ secrets.MY_RENDER_SERVICE_ID }} + api-key: ${{ secrets.MY_RENDER_API_KEY }}