Skip to content

Commit 829306b

Browse files
committed
Initial commit
0 parents  commit 829306b

File tree

8 files changed

+636
-0
lines changed

8 files changed

+636
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Step Log Output Action
2+
3+
Puts step log into step output
4+
5+
## Inputs
6+
7+
### `command`
8+
9+
**Required** Command to be executed.
10+
11+
## Outputs
12+
13+
### `log`
14+
15+
Log of executed command
16+
17+
## Example usage
18+
19+
uses: actions/step-log-output-actions@v1
20+
with:
21+
command: echo 'Hello, world!'

action.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: 'Step Log Output Action'
2+
description: 'Puts step log into step output'
3+
inputs:
4+
command: # id of input
5+
description: 'Command to be executed'
6+
required: true
7+
outputs:
8+
log: # id of output
9+
description: 'Log of executed command'
10+
runs:
11+
using: 'node12'
12+
main: 'dist/index.js'

0 commit comments

Comments
 (0)