-
Notifications
You must be signed in to change notification settings - Fork 58
/
action.yml
37 lines (33 loc) · 996 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Deploy to Deno Deploy
description: Deploy your applications to Deno Deploy, right from GitHub Actions
author: 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: node20
main: action/index.js