Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rkotov93 committed Jan 24, 2021
0 parents commit 829306b
Show file tree
Hide file tree
Showing 8 changed files with 636 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Step Log Output Action

Puts step log into step output

## Inputs

### `command`

**Required** Command to be executed.

## Outputs

### `log`

Log of executed command

## Example usage

uses: actions/step-log-output-actions@v1
with:
command: echo 'Hello, world!'
12 changes: 12 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: 'Step Log Output Action'
description: 'Puts step log into step output'
inputs:
command: # id of input
description: 'Command to be executed'
required: true
outputs:
log: # id of output
description: 'Log of executed command'
runs:
using: 'node12'
main: 'dist/index.js'
Loading

0 comments on commit 829306b

Please sign in to comment.