Skip to content

Commit 386ffa4

Browse files
authored
Merge pull request #153 from Ctrlpanel-gg/development
Prepare for 1.2.0 public beta
2 parents 1dd21a0 + e41ffbf commit 386ffa4

File tree

101 files changed

+2525
-18
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+2525
-18
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@ jobs:
1414
name: Deploy to GitHub Pages
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
18-
- uses: actions/setup-node@v3
17+
- uses: actions/checkout@v6
18+
- uses: actions/setup-node@v6
1919
with:
20-
node-version: 18.x
20+
node-version: 21
2121
cache: yarn
2222
- name: Build website
23-
working-directory: docs
2423
run: |
2524
yarn install
2625
yarn build

.github/workflows/test-deploy.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@ jobs:
1414
name: Test deployment
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
18-
- uses: actions/setup-node@v3
17+
- uses: actions/checkout@v6
18+
- uses: actions/setup-node@v6
1919
with:
20-
node-version: 18.x
20+
node-version: 21
2121
cache: yarn
2222
- name: Test build
23-
working-directory: docs
2423
run: |
2524
yarn install
2625
yarn build

docusaurus.config.js

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,22 @@ module.exports = {
105105
"@docusaurus/preset-classic",
106106
{
107107
docs: {
108-
lastVersion: "current",
108+
includeCurrentVersion: false,
109+
lastVersion: "1.1.x",
109110
versions: {
110-
current: {
111+
'beta': {
112+
label: '1.2.x (Public Beta)',
113+
path: 'beta',
114+
banner: 'none',
115+
},
116+
// '1.2.x': {
117+
// label: '1.2.x (Upcoming release)',
118+
// },
119+
'1.1.x': {
111120
label: '1.1.x (Latest)',
112-
// path: 'development',
113121
},
114-
archive: {
122+
'archive': {
115123
label: 'Archive',
116-
// path: 'development',
117124
},
118125
},
119126
// Please change this to your repo.

readme.md

Lines changed: 4 additions & 4 deletions

docs/contributing/_category_.json renamed to versioned_docs/version-1.1.x/contributing/_category_.json

File renamed without changes.

docs/contributing/donating.mdx renamed to versioned_docs/version-1.1.x/contributing/donating.mdx

docs/contributing/partners.mdx renamed to versioned_docs/version-1.1.x/contributing/partners.mdx

docs/contributing/reporting.mdx renamed to versioned_docs/version-1.1.x/contributing/reporting.mdx

docs/contributing/translating.mdx renamed to versioned_docs/version-1.1.x/contributing/translating.mdx

docs/development/_category_.json renamed to versioned_docs/version-1.1.x/development/_category_.json

File renamed without changes.

0 commit comments

Comments
 (0)