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 16b25e5 commit 4162870Copy full SHA for 4162870
1 file changed
.github/workflows/workflow.yml
@@ -133,14 +133,21 @@ jobs:
133
needs: BuildModule
134
runs-on: ubuntu-latest
135
steps:
136
- - name: Checkout Code
137
- uses: actions/checkout@v4
+ - name: Init temp repo
+ run: |
138
+ git init
139
+ git config user.name "GitHub Actions"
140
+ git config user.email "github-actions[bot]@users.noreply.github.com"
141
142
- name: Download docs artifact
143
uses: actions/download-artifact@v4
144
with:
145
name: docs
- path: ${{ inputs.DocsOutputPath }}
146
+
147
+ - name: Commit docs
148
149
+ git add .
150
+ git commit -m "Update documentation"
151
152
- name: Lint documentation
153
uses: super-linter/super-linter/slim@latest
0 commit comments