atualizando as dependencias #7
This file contains hidden or 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 para o Render | |
on: | |
push: | |
branches: [main] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout do código | |
uses: actions/checkout@v3 | |
- name: Deploy no Render | |
run: | | |
curl -X POST https://api.render.com/deploy/srv-d058ttvgi27c738n14s0 \ | |
-H 'Authorization: Bearer ${{ secrets.RENDER_API_KEY }}' \ | |
-H 'Content-Type: application/json' |