Skip to content

Build and deploy from the devel branch once a week, preferably at the… #2486

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: devel
Choose a base branch
from
22 changes: 22 additions & 0 deletions .github/workflows/build-devel-docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Scheduled build for devel docs
"on":
schedule:
# Run at 05:22 daily
- cron: '22 5 * * *'

jobs:
build-package-docs:
name: 📝 Build
uses: ./.github/workflows/reusable-build-docs.yaml
secrets:
DOCS_BOT_TOKEN: ${{ secrets.DOCS_BOT_TOKEN }}

deploy-package-docs:
name: 🚀 Deploy
needs: build-package-docs
uses: ./.github/workflows/reusable-deploy-docs.yaml
with:
deployment-environment: 'production'
secrets:
DEPLOY_DOC_BUILD: ${{ secrets.DEPLOY_DOC_BUILD }}
27 changes: 27 additions & 0 deletions .github/workflows/build-latest-docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Scheduled build for latest docs
"on":
schedule:
# Run at 05:41 on Monday
- cron: '41 5 * * 1'

jobs:
build-package-docs:
name: 📝 Build
uses: ./.github/workflows/reusable-build-docs.yaml
with:
repository-branch: 'stable-2.18'
ansible-package-version: '11'
secrets:
DOCS_BOT_TOKEN: ${{ secrets.DOCS_BOT_TOKEN }}

deploy-package-docs:
name: 🚀 Deploy
needs: build-package-docs
uses: ./.github/workflows/reusable-deploy-docs.yaml
with:
ansible-package-version: '11'
deployment-environment: 'production'
repository-branch: 'stable-2.18'
secrets:
DEPLOY_DOC_BUILD: ${{ secrets.DEPLOY_DOC_BUILD }}