Skip to content

Commit

Permalink
fixes in entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Dvoinos committed Nov 10, 2020
1 parent a673f9d commit 84d8c99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ runs:
args:
- ${{ inputs.who-to-greet }}
- ${{ inputs.dir }}
post-entrypoint: 'goodbye.sh'
post-entrypoint: '/goodbye.sh'
6 changes: 3 additions & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ echo "${time}"
echo "::set-output name=time::$time"

echo "Listing is "
ls $2
LISTING=$(ls -lah $2)
ls -lah $2
LISTING=$(ls $2)
echo "::set-output name=listing::$LISTING"

echo "Set random"
echo "::set-output name=listing::$RANDOM"
echo "::set-output name=random-id::$RANDOM"

0 comments on commit 84d8c99

Please sign in to comment.