Skip to content

Commit 782cfe6

Browse files
committed
test: test
1 parent 14949b9 commit 782cfe6

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
check-changes:
1616
runs-on: ubuntu-latest
1717
outputs:
18-
matrix-include: ${{ steps.generate-matrix-final.outputs.include }}
18+
matrix-include: ${{ github.event_name == 'workflow_dispatch' && steps.generate-matrix-manual.outputs.include || steps.generate-matrix-auto.outputs.include }}
1919
steps:
2020
- name: Checkout code
2121
uses: actions/checkout@v3
@@ -192,16 +192,6 @@ jobs:
192192
echo "include=[]" >> $GITHUB_OUTPUT
193193
fi
194194
195-
- name: Set final matrix output
196-
id: generate-matrix-final
197-
shell: bash
198-
run: |
199-
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
200-
echo "include=${{ steps.generate-matrix-manual.outputs.include }}" >> $GITHUB_OUTPUT
201-
else
202-
echo "include=${{ steps.generate-matrix-auto.outputs.include }}" >> $GITHUB_OUTPUT
203-
fi
204-
205195
deploy-and-update-index:
206196
needs: check-changes
207197
if: needs.check-changes.outputs.matrix-include != '[]'

apps/docs/messages/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"baseOptions": {
3-
"title": "Next.js",
3+
"title": "Next.js Documentation",
44
"doc": "Documentation",
55
"blog": "Blog",
66
"learn": "Learn"

apps/docs/messages/zh-hans.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"baseOptions": {
3-
"title": "Next.js 简体中文",
3+
"title": "Next.js - 简体中文",
44
"doc": "文档",
55
"blog": "博客",
66
"learn": "学习"

0 commit comments

Comments
 (0)