Skip to content

Experimenting with Deno #2

Experimenting with Deno

Experimenting with Deno #2

Workflow file for this run

name: Deploy
on:
push:
branches: with-deno
pull_request:
branches: with-deno
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: Clone repository
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Build step
run: "deno run --allow-read --allow-write --allow-net server.ts"
- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: "adilnaqvi-com"
entrypoint: ""
root: "/"