Skip to content

updating subhosting documentation #743

updating subhosting documentation

updating subhosting documentation #743

Workflow file for this run

name: Deploy
on:
push:
branches: main
pull_request:
branches: main
jobs:
deploy:
name: Deploy
runs-on: ubuntu-22.04-xl
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 Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Set up Deno
uses: denoland/setup-deno@v1
with:
deno-version: canary
- name: Build step
env:
DENO_FUTURE: 1
run: npm install && deno task build
- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: "deno-docs"
entrypoint: "server.ts"
root: "build"