From d7d385d9fd01ca17cd6d8be1db925d0bf0116edc Mon Sep 17 00:00:00 2001 From: Dayan Perez Date: Sun, 21 Apr 2024 15:02:22 -0300 Subject: [PATCH] github action to deploy client to netlify --- .github/workflows/deploy-client.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/deploy-client.yml diff --git a/.github/workflows/deploy-client.yml b/.github/workflows/deploy-client.yml new file mode 100644 index 00000000..bee7e67b --- /dev/null +++ b/.github/workflows/deploy-client.yml @@ -0,0 +1,14 @@ +name: Deploy Client + +on: + push: + branches: [main] + +jobs: + deploy: + name: "Deploy to Netlify" + steps: + - uses: jsmrcaga/action-netlify-deploy@v2.0.0 + with: + NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} + NETLIFY_DEPLOY_TO_PROD: true