generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Closed
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
Provide a way to pass deployment logs to other actions. This can be:
- Via an output variable:
- uses: 47ng/actions-clever-cloud@version
id: deploy
with:
logs:
output: true
- run: echo ${{ steps.deploy.outputs.logs }}
- Via the filesystem:
- uses: 47ng/actions-clever-cloud@version
with:
logs:
file: ./path/to/file.log # resolved as relative to repository root
Or a combination of those options.
Because logs are printed to the standard output by the Clever Tools CLI, a way to hide them if they contain sensitive data could also be useful:
- uses: 47ng/actions-clever-cloud@version
with:
logs:
stdout: false
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed