chore: update the deploy yaml file #31
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: Continuous Deployment | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Login to Render | |
run: render login --token ${{ secrets.RENDER_TOKEN }} | |
env: | |
RENDER_TOKEN: ${{ secrets.RENDER_TOKEN }} | |
- name: Deploy to Render | |
run: render up |