Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 508 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 508 Bytes

Hello Action

A simple GitHub Action written in Go that prints a message.

Inputs

message

Optional The message to print. Default "Hello, World!".

Example usage

uses: your-username/hello-action@v1
with:
  message: 'Hello from my workflow!'

Development

This action is written in Go and uses Docker to run. To build locally:

  1. Build the Go binary:

    go build -o main .
  2. Build the Docker image:

    docker build -t hello-action .