-
I updated the build spec so that it matches the path which the working index.html uses, but the problem STILL persists.
EDIT: I was in a non existant subfolder. (404?). I tried going to /~site and I got plain html without js and css. Then I explicitly went to / and now it works
version: 19 jobs: - name: Create docs jobExecutor: Main steps: - !CheckoutStep name: Checkout cloneCredential: !DefaultCredential {} withLfs: false withSubmodules: false condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL - !RunContainerStep name: phpdoc image: phpdoc/phpdoc:3 args: -d src/ -t docs/ volumeMounts: - sourcePath: . targetPath: /data useTTY: false condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL - !PublishSiteStep name: publish sourcePath: docs artifacts: '**' condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL retryCondition: never maxRetries: 3 retryDelay: 30 timeout: 3600 -
Previous Value Current Value Open
Closed
-
This bug will be addressed in 8.0.0, with fix for issue #1168
| Type |
Bug
|
| Priority |
Normal
|
| Assignee | |
| Affected Versions |
Not Found
|
Issue Votes (0)
Given the following buildspec file:
my build job succeeds (see log below)
But then, when I want to visit the page with the link I get, I only get
HTTP ERROR 500 Internal server error: check server log for details
URI: /modal-php/~site STATUS: 500 MESSAGE: Internal server error: check server log for details SERVLET: io.onedev.server.web.DefaultWicketServlet$$EnhancerByGuice$$159884065-77b71c9 Powered by Jetty:// 9.4.43.v20210629
--
Where do I find logs? When I try to publish a site with a simple index.html page it works as expected...