Set dist/index as entrypoint

This commit is contained in:
Nick Alteen
2023-08-23 13:37:14 -04:00
parent 4ddc52349f
commit 0e82f80ee6
8 changed files with 4452 additions and 3351 deletions

View File

@@ -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