Skip to content

ci: add deploy workflow #1

ci: add deploy workflow

ci: add deploy workflow #1

Workflow file for this run

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: "."