We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1100047 commit 8115426Copy full SHA for 8115426
.github/workflows/update-docs-ci.yml
@@ -0,0 +1,20 @@
1
+name: Update Docs CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - docs/update-translations
7
8
+jobs:
9
+ translate:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ # Checkout the repository first to access local actions
13
+ - name: Checkout code
14
+ uses: actions/checkout@v3
15
+ with:
16
+ fetch-depth: 1
17
+ - name: Setup Tools
18
+ # After pnpm install, apps/docs will execute postinstall: fumadocs-mdx
19
+ # Which will generated MDX types (check if the docs frontmatter is correct)
20
+ uses: ./.github/actions/setup
0 commit comments