-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 829306b
Showing
8 changed files
with
636 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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!' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
Oops, something went wrong.