Skip to content
Prev Previous commit
Next Next commit
nojekyll file now created by new publish action, move to renovate
  • Loading branch information
lfrancke committed Feb 25, 2022
commit d480f8f2aaf02dacae1e93e34a756f11c4d90f8e
10 changes: 0 additions & 10 deletions .github/dependabot.yml

This file was deleted.

17 changes: 10 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- name: "Generate site using Antora site action"
uses: kameshsampath/antora-site-action@v0.2.4
- uses: actions/setup-node@v2
with:
antora_playbook: antora-playbook.yml
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.2.5
node-version: '16'
cache: 'npm'
- run: npm install
- run: npx antora --fetch local-antora-playbook.yml
- name: Publish to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
branch: 'docs'
folder: 'build/site'
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build/site
publish_branch: docs
8 changes: 1 addition & 7 deletions antora-playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,7 @@ ui:
bundle:
url: https://repo.stackable.tech/repository/misc/antora-ui-bundle.zip
snapshot: true
supplemental_files:
- path: ./node_modules/@antora/lunr-extension/supplemental_ui
- path: ui.yml
contents: |
static_files:
- .nojekyll
- path: .nojekyll
supplemental_files: ./node_modules/@antora/lunr-extension/supplemental_ui

antora:
extensions:
Expand Down
8 changes: 1 addition & 7 deletions gitpod-antora-playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,7 @@ ui:
bundle:
url: https://repo.stackable.tech/repository/misc/antora-ui-bundle.zip
snapshot: true
supplemental_files:
- path: ./node_modules/@antora/lunr-extension/supplemental_ui
- path: ui.yml
contents: |
static_files:
- .nojekyll
- path: .nojekyll
supplemental_files: ./node_modules/@antora/lunr-extension/supplemental_ui

antora:
extensions:
Expand Down
8 changes: 1 addition & 7 deletions local-antora-playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,7 @@ ui:
bundle:
url: https://repo.stackable.tech/repository/misc/antora-ui-bundle.zip
snapshot: true
supplemental_files:
- path: ./node_modules/@antora/lunr-extension/supplemental_ui
- path: ui.yml
contents: |
static_files:
- .nojekyll
- path: .nojekyll
supplemental_files: ./node_modules/@antora/lunr-extension/supplemental_ui

antora:
extensions:
Expand Down
31 changes: 31 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"extends": [
"helpers:pinGitHubActionDigests"
],
"labels": [
"type/dependencies"
],
"prCreation": "not-pending",
"reviewers": [
"team:developers"
],
"rollbackPrs": true,
"schedule": [
"after 5:00 and before 6:00 every weekday"
],
"timezone": "Europe/Berlin",
"packageRules": [
{
"matchUpdateTypes": [
"patch"
],
"groupName": "All dependencies (patch only)"
}
],
"lockFileMaintenance": {
"enabled": true,
"schedule": [
"after 5:00 and before 6:00 every weekday"
]
},
}