Skip to content

Commit 4162870

Browse files
test
1 parent 16b25e5 commit 4162870

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

.github/workflows/workflow.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,14 +133,21 @@ jobs:
133133
needs: BuildModule
134134
runs-on: ubuntu-latest
135135
steps:
136-
- name: Checkout Code
137-
uses: actions/checkout@v4
136+
- name: Init temp repo
137+
run: |
138+
git init
139+
git config user.name "GitHub Actions"
140+
git config user.email "github-actions[bot]@users.noreply.github.com"
138141
139142
- name: Download docs artifact
140143
uses: actions/download-artifact@v4
141144
with:
142145
name: docs
143-
path: ${{ inputs.DocsOutputPath }}
146+
147+
- name: Commit docs
148+
run: |
149+
git add .
150+
git commit -m "Update documentation"
144151
145152
- name: Lint documentation
146153
uses: super-linter/super-linter/slim@latest

0 commit comments

Comments
 (0)