Skip to content

github-actions-repo/github-actions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DockerActionRecipe

A Docker container actions that handles input and output writes a job summary.

Inputs

who-to-greet

Required The name of the person to greet. Default "World".

Outputs

answer

The answer to the ultimate question of life, the universe, and everything.

Usage

- uses: howsen82/DockerActionRecipe@v1.0
  with:
    # Required: the person to greet with the action
    # Default: World
    who-to-greet: ''

Examples

Simple example

- uses: howsen82/DockerActionRecipe@v1.0
  with:
    who-to-greet: 'Steven Leong'

Example that uses the output parameter

- uses: howsen82/DockerActionRecipe@v1.0
  id: my-action
  with:
    who-to-greet: 'Steven Leong'

- name: Output the answer
  run: echo "The answer is '${{ steps.my-action.outputs.answer }}'"

About

GitHub Actions Cookbook

Resources

Stars

Watchers

Forks

Packages

No packages published