Skip to content

Commit

Permalink
Update deploy script
Browse files Browse the repository at this point in the history
brundonsmith committed Nov 23, 2024
1 parent eb8d83f commit 05abd1d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -35,7 +35,8 @@ jobs:
runs-on: ubuntu-latest
needs: [front-end-lint, front-end-typecheck, back-end-check]
env:
deploy_url: ${{ secrets.RENDER_DEPLOY_HOOK_URL }}
RENDER_DEPLOY_URL_BACKEND: ${{ secrets.RENDER_DEPLOY_URL_BACKEND }}
RENDER_DEPLOY_URL_FRONTEND: ${{ secrets.RENDER_DEPLOY_URL_FRONTEND }}
steps:
- name: Deploy
run: curl "$deploy_url"
run: curl "$RENDER_DEPLOY_URL_BACKEND && curl $RENDER_DEPLOY_URL_FRONTEND"

0 comments on commit 05abd1d

Please sign in to comment.