Can't push folder in project
oliverunger opened this issue · 2 comments
Describe the bug
I would like to push a folder in my project that was generated by a maven build:
projectname (maven parent module)
--> model (maven child module)
----> src/main/resources/apidocs
Reproduction Steps
I tried the following for the folder param with the following outcomings:
./model/src/main/resources/apidocs
Error: The directory you're trying to deploy named /home/runner/work/projectname/projectname/model/src/main/resources/apidocs doesn't exist. Please double check the path and any prerequisite build scripts and try again. ❗
../model/src/main/resources/apidocs
Error: The directory you're trying to deploy named /home/runner/work/projectname/model/src/main/resources/apidocs doesn't exist. Please double check the path and any prerequisite build scripts and try again. ❗
~/model/src/main/resources/apidocs
Error: The directory you're trying to deploy named /home/runner/model/src/main/resources/apidocs doesn't exist. Please double check the path and any prerequisite build scripts and try again. ❗
Similarly to #1426, can you verify that these folders actually exist on the file system using ls
or something else after the generation step occurs? This error is produced by this line: https://github.com/JamesIves/github-pages-deploy-action/blob/dev/src/util.ts#L86-L90 which means Node cannot find the specified directory.