質問編集履歴
1
エラーメッセージの内容を詳細に分かるよう記述
test
CHANGED
File without changes
|
test
CHANGED
@@ -64,33 +64,33 @@
|
|
64
64
|
|
65
65
|
|
66
66
|
|
67
|
-
このうち、`Deploy for Heroku` のステップにおいて、GitHub Actionsにて実行すると、下記のような
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
or
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
67
|
+
このうち、`Deploy for Heroku` のステップにおいて、GitHub Actionsにて実行すると、下記のようなエラーが発生してしまいます。
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
エラーメッセージ抜粋
|
72
|
+
|
73
|
+
```
|
74
|
+
|
75
|
+
Error: Failed to execute goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy (default-cli) on project food_share_web: Execution default-cli of goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy failed: Index 0 out of bounds for length 0 -> [Help 1]
|
76
|
+
|
77
|
+
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy (default-cli) on project food_share_web: Execution default-cli of goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy failed: Index 0 out of bounds for length 0
|
78
|
+
|
79
|
+
(省略)
|
80
|
+
|
81
|
+
Caused by: org.apache.maven.plugin.PluginExecutionException: Execution default-cli of goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy failed: Index 0 out of bounds for length 0
|
82
|
+
|
83
|
+
Caused by: java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0
|
84
|
+
|
85
|
+
```
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
共通しているのが、```Index 0 out of bounds for length 0```というエラーになります。
|
90
|
+
|
91
|
+
この内容が要素のない配列から要素を読み出そうとしてエラーになっているというのは分かるのですが、どの配列を読み出そうとしているのかが分からない状態です。
|
92
|
+
|
93
|
+
|
94
94
|
|
95
95
|
手元の実機で `mvn -X clean heroku:deploy-war` のコマンドを実行した際には問題なくデプロイされ、エラーは発生しませんでした。
|
96
96
|
|