This is an automated email from the ASF dual-hosted git repository. hboutemy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/attic.git
The following commit(s) were added to refs/heads/main by this push: new 28ce452 document staged site location 28ce452 is described below commit 28ce452031f78d737842f692d3fdcea62196e91f Author: Hervé Boutemy <hbout...@apache.org> AuthorDate: Sat May 10 13:25:26 2025 +0200 document staged site location --- .github/workflows/website.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 85ff3be..1f4da84 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -18,7 +18,7 @@ name: Build Attic site # If the target branch is main, output is written to asf-site and cwiki-retired -# Otherwise, the generated output is written back to the branch so it can be checked +# Otherwise, output site is written to $branch-site branch that is staged to https://attic-$branch.staged.apache.org/ for review on: push: @@ -89,7 +89,7 @@ jobs: echo "Running git add -A" git add -A . echo "Running git commit" - if git commit -m "Regenerated website based on ${GITHUB_SHA} commit" + if git commit -m "Regenerated cwiki flags based on ${GITHUB_SHA} commit" then git push origin cwiki-retired fi @@ -98,7 +98,7 @@ jobs: run: | BRANCH="${{ (github.head_ref || github.ref_name) }}" SITE="${{ (github.head_ref || github.ref_name) }}-site" - echo "branch: $BRANCH => site: $SITE" + echo "branch: $BRANCH => site: $SITE = https://attic-$BRANCH.staged.apache.org/" echo "Running git config" git config user.name "GitHub Actions" git config user.email "acti...@users.noreply.github.com"