Skip to content

Commit

Permalink
ci: add deploy workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Chawye Hsu <[email protected]>
  • Loading branch information
chawyehsu committed Nov 26, 2024
1 parent 8af0774 commit 75a4ea9
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Deno Deploy
on:
push:
branches: api

jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest

permissions:
id-token: write # Needed for auth with Deno Deploy
contents: read # Needed to clone the repository

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x

- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: "dorado-api"
entrypoint: "index.ts"
root: "."

0 comments on commit 75a4ea9

Please sign in to comment.