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 56b0ffe commit 8833f12Copy full SHA for 8833f12
1 file changed
.github/workflows/workflow.yml
@@ -150,13 +150,21 @@ jobs:
150
needs: BuildModule
151
runs-on: ubuntu-latest
152
steps:
153
- - name: Git init
154
- run: git init
+ - name: Checkout Code
+ uses: actions/checkout@v4
155
+ with:
156
+ fetch-depth: 0
157
158
- name: Download docs artifact
159
uses: actions/download-artifact@v4
160
with:
161
name: ${{ inputs.Name }}-docs
162
+ path: ${{ inputs.DocsOutputPath }}
163
+
164
+ - name: git add
165
+ run: |
166
+ git add .
167
+ git commit -m "Update documentation"
168
169
- name: Lint code base
170
uses: super-linter/super-linter@latest
0 commit comments