Skip to content

Commit

Permalink
change service ids
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkE16 committed Jan 14, 2025
1 parent aed833d commit 3714e96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Deploy to Render
run: |
curl -X POST \
--url https://api.render.com/v1/services/${{ secrets.RENDER_PROD_SERVICE_ID }}/deploys \
--url https://api.render.com/v1/services/${{ secrets.RENDER_DEV_SERVICE_ID }}/deploys \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'authorization: Bearer ${{ secrets.RENDER_KEY }}' \
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,10 @@ jobs:
- name: Deploy to Render
run: |
curl -X POST \
--url https://api.render.com/v1/services/${{ secrets.RENDER_SERVICE_ID }}/deploys \
--url https://api.render.com/v1/services/${{ secrets.RENDER_PROD_SERVICE_ID }}/deploys \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'authorization: Bearer ${{ secrets.RENDER_KEY }}' \
--data '{
"imageUrl": "ghcr.io/marke16/livecanvas:prod"
}'

0 comments on commit 3714e96

Please sign in to comment.