Closed fork52 closed 11 months ago
Repo is public now: rx-codeforces-api-wrapper
Taking a look at your project, you are not referencing mvnw
for the build step and relying on the actions runner installed mvn
to invoke maven, this is event though you have a mvnw
in your project.
This action, by default and unless you disable it via an input, will use any mvnw
that is in your project as that is usually why users would have committed this file into their repository in the first place. If you wanted to ignore the wrapper file you have in the repository, then setting ignore-maven-wrapper
to true
will fix what you are seeing.
I have checked out your repository and the better way to solve this is to correct the execution bit on mvnw
in your repository so as to make it runnable and then update your actions workflows to call mvnw
instead of mvn
otherwise there will still be inconsistencies.
The directory listing under linux of your repository showing the missing execution mask on the mvnw
:
I am using this action for a multi-module maven project (Repo is currently private).
As per the readme, I am expecting that that v3 is having multi-module support.
However, I am facing the following issue:
Repo structure:
Am I missing something here ?