質問編集履歴
1
コードの追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -27,4 +27,17 @@
|
|
27
27
|
Error: Process completed with exit code 127.
|
28
28
|
```
|
29
29
|
|
30
|
-
githubではリポジトリの直下にhoge.shを置き、.github/workflows/hoge.ymlを使って実行しています。
|
30
|
+
githubではリポジトリの直下にhoge.shを置き、.github/workflows/hoge.ymlを使って実行しています。
|
31
|
+
|
32
|
+
追記
|
33
|
+
```yml
|
34
|
+
steps:
|
35
|
+
- name: Run sh
|
36
|
+
run: sh hoge.sh
|
37
|
+
```
|
38
|
+
とすると
|
39
|
+
```
|
40
|
+
sh: 0: Can't open hoge.sh
|
41
|
+
Error: Process completed with exit code 127.
|
42
|
+
```
|
43
|
+
となります。
|