This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-0-test by this push:
new 3606fee55d4 [v3-0-test] Add --owerwrite when publishing documentation
to S3 (#50543) (#50611)
3606fee55d4 is described below
commit 3606fee55d4d5de6dc4a3c2a80edb5aba74ccac4
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed May 14 16:25:35 2025 +0200
[v3-0-test] Add --owerwrite when publishing documentation to S3 (#50543)
(#50611)
When we are rerunning the old doc builds, we really want to overwrite
existing documentation, there is no point in silently skipping the
docs - this is useful for manual pushing because you can make a
mistake easily but when you are runnig it in workflow, you run it
from a specified tag and the docs are for sure built from this tag
so our intention is to override it.
(cherry picked from commit d88bf3f)
---
.github/workflows/publish-docs-to-s3.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/publish-docs-to-s3.yml
b/.github/workflows/publish-docs-to-s3.yml
index 7740773c107..7f9a104279f 100644
--- a/.github/workflows/publish-docs-to-s3.yml
+++ b/.github/workflows/publish-docs-to-s3.yml
@@ -243,4 +243,4 @@ jobs:
run: |
breeze release-management publish-docs-to-s3 --source-dir-path
${SOURCE_DIR_PATH} \
--destination-location ${DESTINATION_LOCATION} --stable-versions \
- --exclude-docs ${EXCLUDE_DOCS}
+ --exclude-docs ${EXCLUDE_DOCS} --overwrite