Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/child_repo.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
jobs:
dead-links:
name: Check the dead-links on the repo
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:

deploy:
name: Deploy the repo
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [dead-links]
steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dead_links.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
jobs:
dead-links:
name: Check the dead-links on the repo
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/deploy_whole_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,29 @@ env:
jobs:
prepare-matrix:
name: Prepare matrix by getting the repo names from repositories.json
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install yq
run: |
sudo apt-get update
sudo apt-get install python python3-pip
sudo apt-get install python3 python3-pip
pip3 install yq
shell: bash

- name: Get repo names
id: set-matrix
run: |
export REPOS=$(cat .repos/repositories.json | yq -c '[.[]]')
echo "::set-output name=repo::$REPOS"
echo "repo=$REPOS" >> $GITHUB_OUTPUT
outputs:
matrix: ${{ steps.set-matrix.outputs.repo }}

deploy_framework:
name: Deploy framework
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
deploy_child_repo:
name: Deploy child repo ${{ matrix.repo.repo_name }}-${{ matrix.repo.doc_version }}
needs: [prepare-matrix, deploy_framework]
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
repo: ${{ fromJson(needs.prepare-matrix.outputs.matrix) }}
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
invalidate_cloudfront:
name: Invalidate CloudFront
needs: [deploy_child_repo]
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
30 changes: 25 additions & 5 deletions .repos/repositories.json
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@
"repo_name": "paas-console",
"doc_version": 1,
"stable": "master",
"dev": "staging",
"dev": "develop",
"deploy_path": "/paas-console/1/",
"name": "paas-console-1",
"private": true
Expand Down Expand Up @@ -317,22 +317,42 @@
"url": "https://github.com/kuzzleio/kuzzle-plugin-keycloak",
"repo_name": "kuzzle-plugin-keycloak",
"doc_version": 1,
"stable": "master",
"dev": "beta",
"stable": "1-stable",
"dev": "1-beta",
"deploy_path": "/official-plugins/keycloak/1/",
"name": "kuzzle-plugin-keycloak-1",
"private": true
},
{
"url": "https://github.com/kuzzleio/kuzzle-plugin-keycloak",
"repo_name": "kuzzle-plugin-keycloak",
"doc_version": 2,
"stable": "master",
"dev": "beta",
"deploy_path": "/official-plugins/keycloak/2/",
"name": "kuzzle-plugin-keycloak-2",
"private": true
},
{
"url": "https://github.com/kuzzleio/kuzzle-plugin-auth-openid",
"repo_name": "kuzzle-plugin-auth-openid",
"doc_version": 1,
"stable": "master",
"dev": "beta",
"stable": "1-stable",
"dev": "1-beta",
"deploy_path": "/official-plugins/openid/1/",
"name": "kuzzle-plugin-auth-openid-1",
"private": true
},
{
"url": "https://github.com/kuzzleio/kuzzle-plugin-auth-openid",
"repo_name": "kuzzle-plugin-auth-openid",
"doc_version": 2,
"stable": "master",
"dev": "beta",
"deploy_path": "/official-plugins/openid/2/",
"name": "kuzzle-plugin-auth-openid-2",
"private": true
},
{
"url": "https://github.com/kuzzleio/kuzzle-logger",
"repo_name": "kuzzle-logger",
Expand Down
18 changes: 18 additions & 0 deletions src/.vuepress/sections.json
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,15 @@
"icon": "/logos/keycloak.svg",
"released": true
},
"/official-plugins/keycloak/2": {
"kuzzleMajor": 2,
"version": 2,
"name": "Keycloak",
"section": "official-plugins",
"subsection": "keycloak",
"icon": "/logos/keycloak.svg",
"released": true
},
"/official-plugins/openid/1": {
"kuzzleMajor": 2,
"version": 1,
Expand All @@ -487,6 +496,15 @@
"icon": "/logos/open-id.svg",
"released": true
},
"/official-plugins/openid/2": {
"kuzzleMajor": 2,
"version": 2,
"name": "OpenID",
"section": "official-plugins",
"subsection": "openid",
"icon": "/logos/open-id.svg",
"released": true
},
"/modules/logger/1": {
"kuzzleMajor": 2,
"version": 1,
Expand Down
Loading