Skip to content

chore: update the deploy yaml file #32

chore: update the deploy yaml file

chore: update the deploy yaml file #32

Workflow file for this run

name: Continuous Deployment
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install Render CLI
run: npm install -g @render/cli
- name: Login to Render
run: render login --token ${{ secrets.RENDER_TOKEN }}
env:
RENDER_TOKEN: ${{ secrets.RENDER_TOKEN }}
- name: Deploy to Render
run: render up