Skip to content

Commit

Permalink
Add deploy job to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
brundonsmith committed Nov 23, 2024
1 parent 26d19a3 commit d1fca2c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,11 @@ jobs:
deno-version: "1.36.3"
- name: Typecheck
working-directory: back-end
run: deno task check
run: deno task check
deploy:
runs-on: ubuntu-latest
env:
deploy_url: ${{ secrets.RENDER_DEPLOY_HOOK_URL }}
steps:
- name: Deploy
run: curl "$deploy_url"

0 comments on commit d1fca2c

Please sign in to comment.