samredai opened a new pull request #13: URL: https://github.com/apache/iceberg-docs/pull/13
As I started to look at adding the previous javadoc [versions](https://github.com/apache/iceberg/tree/asf-site/javadoc), I realized that they do not have accompanying docs sites (since the docs-site has never been versioned). Structurally, this would mean we'd have a branch for each javadoc version (`0.7.0-incubating`, `0.8.0-incubating`, `0.9.0` etc) that would only have a `javadoc` directory but no `docs` directory. Which brought me to the reason for this PR. Currently, the `deploy-javadoc` job waits on the completion of the `deploy-docs` job to avoid a race condition on committing to the `asf-site` branch. The problem though is that if there is no `docs` directory, the `deploy-docs` job will fail and the `deploy-javadoc` job won't run. This adds `continue-on-error: true` to the `deploy-docs` job so that if it fails (as it will for the `0.9.0` branch for example), the `deploy-javadoc` job will still run immediately after. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
