Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit c0dac25

Browse files
authored
Merge pull request #21 from aiming/fix-run-script-directory
try.shの場所をGITHUB_ACTION_PATHから取得
2 parents 7699438 + fd3ffe1 commit c0dac25

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ runs:
4242
run: |
4343
set -x
4444
45-
source ./try.sh
45+
echo $GITHUB_ACTION_PATH
46+
source $GITHUB_ACTION_PATH/try.sh
4647
4748
try_till_success curl -s 'https://github.com' > /dev/null
4849

0 commit comments

Comments
 (0)