f42dc28da8
- Update action.yml to point to dist/index.js - Add built distribution files - Update package.json and build configuration
18 lines
354 B
YAML
18 lines
354 B
YAML
name: 'Simple Message Action'
|
|
description: 'A simple GitHub Action that prints a message to the console'
|
|
author: 'Pullfrog'
|
|
|
|
inputs:
|
|
message:
|
|
description: 'Message to print to console'
|
|
required: true
|
|
default: 'Hello from Pullfrog Action!'
|
|
|
|
runs:
|
|
using: 'node20'
|
|
main: 'dist/index.js'
|
|
|
|
branding:
|
|
icon: 'message-circle'
|
|
color: 'blue'
|