Skip to content

Commit 8d2b9dd

Browse files
committed
Merge branch 'release'
2 parents 86c501d + a8c5803 commit 8d2b9dd

File tree

554 files changed

+74354
-5437
lines changed

Some content is hidden

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

554 files changed

+74354
-5437
lines changed

.editorconfig

-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ trim_trailing_whitespace = true
99
max_line_length = 120
1010
quote_type = single
1111

12-
[*.json]
13-
indent_style = space
14-
indent_size = 2
15-
1612
[*.yml]
1713
indent_style = space
1814
indent_size = 2

.github/workflows/build-dev.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
name: Build - node 18
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- name: Checkout
21+
uses: actions/checkout@v4
2122
with:
2223
fetch-depth: 0
2324

@@ -37,8 +38,11 @@ jobs:
3738
with:
3839
cmd: build
3940

41+
- name: Zip artifact
42+
run: zip -q -r build.zip build
43+
4044
- name: Upload artifact
4145
uses: actions/upload-artifact@v3
4246
with:
4347
name: build
44-
path: ${{github.workspace}}/build/
48+
path: ${{github.workspace}}/build.zip

.github/workflows/build-prod.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
name: Build - node 18
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- name: Checkout
21+
uses: actions/checkout@v4
2122
with:
2223
fetch-depth: 0
2324

@@ -37,8 +38,11 @@ jobs:
3738
with:
3839
cmd: build
3940

41+
- name: Zip artifact
42+
run: zip -q -r build.zip build
43+
4044
- name: Upload artifact
4145
uses: actions/upload-artifact@v3
4246
with:
4347
name: build
44-
path: ${{github.workspace}}/build/
48+
path: ${{github.workspace}}/build.zip

.github/workflows/crowdin-download.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
upload_sources: false
2424
upload_translations: false
2525
download_translations: true
26-
localization_branch_name: l10n_crowdin_translations
26+
localization_branch_name: tmp_l10n_crowdin_translations
2727
create_pull_request: true
28-
pull_request_title: 'New Crowdin Translations'
28+
pull_request_title: 'Crowdin Translations'
2929
pull_request_base_branch_name: 'release'
3030
env:
3131
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

.github/workflows/crowdin.yml .github/workflows/crowdin-upload.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ name: Crowdin upload
22

33
on:
44
push:
5-
branches:
6-
- release
5+
branches: [release]
6+
paths:
7+
- 'docs/**'
8+
- 'i18n/**'
9+
- '!i18n/en/docusaurus-plugin-content-docs/**'
710

811
permissions:
912
contents: read

0 commit comments

Comments
 (0)