SheikS
Denoβ€’2y agoβ€’
4 replies
Sheik

'Deno.exit' is not allowed in this context.

Locally I can do in a nest project

npm run build
deno run -A .enviroment/deploy.ts

and it works correctly, but when I upload it to deno deploy, it gives me this error:
PermissionDenied: 'Deno.exit' is not allowed in this context.

My deploy.yml
name: Deploy
on:
  push:
    branches: main
  pull_request:
    branches: main

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: Install Node.js
        uses: actions/setup-node@v3
        with:
          node-version: lts/*

      - name: Build step
        run: "npm install && npm run build && node node_modules/tsc-alias/dist/bin/index.js -f dist/"

      - name: Upload to Deno Deploy
        uses: denoland/deployctl@v1
        with:
          project: "ricardonest"
          entrypoint: ".enviroment/deploy.ts"
          root: ""
image.png
Was this page helpful?