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
commit bdcb065ad5b80597127d6d87de978b7b39cdf660 Author: Hervé Boutemy <hbout...@apache.org> AuthorDate: Sat May 10 13:25:26 2025 +0200 document staged site location --- .github/workflows/website.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 85ff3be..79dfe19 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,16 +89,16 @@ 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 - - name: 🚀 Add commit to the branch (if not 'main') + - name: 🚀 Add commit to the site staging *-site branch if: ${{ (github.head_ref || github.ref_name) != 'main' }} 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"