mirror of
https://github.com/actions/typescript-action.git
synced 2025-12-15 22:47:09 +00:00
Set dist/index as entrypoint
This commit is contained in:
21
action.yml
21
action.yml
@@ -1,11 +1,22 @@
|
||||
# When creating your own action from this template, update this file with
|
||||
# information about your action, such as the name, description, inputs, outputs,
|
||||
# and any other relevant details.
|
||||
name: 'Your name here'
|
||||
description: 'Provide a description here'
|
||||
author: 'Your name or organization here'
|
||||
|
||||
# Define your inputs here.
|
||||
inputs:
|
||||
milliseconds: # change this
|
||||
milliseconds:
|
||||
description: 'Your input description here'
|
||||
required: true
|
||||
description: 'input description here'
|
||||
default: 'default value if applicable'
|
||||
default: '1000'
|
||||
|
||||
# Define your outputs here.
|
||||
outputs:
|
||||
time:
|
||||
description: 'Your output description here'
|
||||
|
||||
runs:
|
||||
using: 'node16'
|
||||
main: 'dist/index.js'
|
||||
using: node16
|
||||
main: dist/index.js
|
||||
|
||||
Reference in New Issue
Block a user