github action to deploy client to netlify #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Client | ||
on: | ||
push: | ||
branches: [main] | ||
jobs: | ||
deploy: | ||
name: "Deploy to Netlify" | ||
steps: | ||
- uses: jsmrcaga/[email protected] | ||
with: | ||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | ||
NETLIFY_DEPLOY_TO_PROD: true |