Skip to content

Update README.md

Update README.md #34

Workflow file for this run

name: Deploy to Render
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '22.4.1'
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
- name: Deploy to Render
env:
RENDER_DEPLOY_HOOK: ${{ secrets.RENDER_DEPLOY_HOOK }}
run: curl -X POST $RENDER_DEPLOY_HOOK