This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/causeway.git
commit 4de8862f93a92f52e66df947bc0fc7d0c2bc8565 Author: danhaywood <[email protected]> AuthorDate: Tue Oct 10 06:54:32 2023 +0100 CAUSEWAY-3528 : update release docs --- .../ROOT/pages/post-release-successful.adoc | 40 ++++++++++------------ 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/antora/components/comguide/modules/ROOT/pages/post-release-successful.adoc b/antora/components/comguide/modules/ROOT/pages/post-release-successful.adoc index 38b07a5e67..3db8fc456a 100644 --- a/antora/components/comguide/modules/ROOT/pages/post-release-successful.adoc +++ b/antora/components/comguide/modules/ROOT/pages/post-release-successful.adoc @@ -525,36 +525,26 @@ git push origin release-{page-causewayrel}-$RC --delete ---- <.> adjust RC number as required -== Bump \{page-causewayrel} in `site.yml` - -In `site.yml` file, bump the version of `\{page-causewayrel}` and also `\{page-causewayprev}`, and commit. - == Bump baselines for nightly/weekly builds -=== Nightly build repo +=== Main repo (weekly builds) -And, in the `apache-causeway-committers/causeway-nightly` repo, similarly update: +In the main repo, in `.github/workflows`, update the `BASELINE` variable: [source,yml,subs="attributes+"] -.apache-causeway-ci-nightly.yml +.ci-build-artifacts-no-push-maven.yml ---- jobs: build: - name: build, site, build/push reference app - runs-on: ubuntu-latest + env: - # to be shared among all steps of this job - BASELINE_MAIN: {page-causewayrel} - BASELINE_EDGE: 3.0.0-M1 + BASELINE: {page-causewayrel} ---- - -=== Main repo (weekly builds) - -In the main repo, in `.github/workflows`, update the `BASELINE` variable: +and [source,yml,subs="attributes+"] -.ci-build-artifacts-no-push-maven.yml +.ci-build-site-no-push.yml ---- jobs: build: @@ -563,18 +553,26 @@ jobs: BASELINE: {page-causewayrel} ---- -and + +=== Nightly build repo + +In the `apache-causeway-committers/causeway-nightly` repo, similarly bump the versions of the `BASELINE_MAIN` variable: [source,yml,subs="attributes+"] -.ci-build-site-no-push.yml +.apache-causeway-ci-nightly.yml ---- jobs: build: - + name: build, site, build/push reference app + runs-on: ubuntu-latest env: - BASELINE: {page-causewayrel} + # to be shared among all steps of this job + BASELINE_MAIN: {page-causewayrel} + BASELINE_EDGE: 3.0.0-M1 ---- +NOTE: We leave `BASELINE_EDGE` unchanged for the moment; we will update these release notes when we switch to the v3 release branch. + == Update starter projects
