DenoDDeno
Powered by
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: ""
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
Deno banner
DenoJoin
Chat about Deno, a modern runtime for JavaScript and TypeScript.
20,944Members
Resources
Recent Announcements

Similar Threads

Was this page helpful?

Similar Threads

Deno Deploy failed:Uncaught Exception /Permission Denied : Deno.exit() is not allowed
JMvelascoJJMvelasco / help
3y ago
NotSupported: LocalStorage is not supported in this context.
(ツ)((ツ) / help
12mo ago
Linking to docs.deno.com results in Not Allowed
crowlKatsCcrowlKats / help
16mo ago