Skip to main content
Module

x/deploy/action.yml

Command line tool for Deno Deploy
Go to Latest
File
name: Deploy to Deno Deploydescription: Deploy your applications to Deno Deploy, right from GitHub Actionsauthor: Deno Land Inc
branding: color: gray-dark icon: globe
inputs: project: description: The name or ID of the project to deploy required: true entrypoint: description: The path or URL to the entrypoint file required: true import-map: description: The path or URL to an import map file required: false include: description: Only upload files that match this pattern (multiline and/or comma-separated) required: false exclude: description: Exclude files that match this pattern (multiline and/or comma-separated) required: false root: description: The path to the directory containing the code and assets to upload required: false
outputs: deployment-id: description: The ID of the created deployment url: description: The URL where the deployment is reachable
runs: using: node16 main: action/index.js