We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ff4156 commit 38ea7daCopy full SHA for 38ea7da
2 files changed
.github/actions/generate-docs/action.yml
@@ -46,4 +46,4 @@ runs:
46
uses: actions/upload-pages-artifact@v3
47
with:
48
name: ${{ inputs.artifact-name }}
49
- path: './docs'
+ path: './docs'
.github/actions/push-changes/action.yml
@@ -34,10 +34,11 @@ runs:
34
uses: actions/download-artifact@v4
35
36
37
+ path: ${{ inputs.working-directory }}
38
- name: Add changes from ${{ inputs.working-directory }}
39
shell: bash
40
run: |
- ls
41
+ ls -R ${{ inputs.working-directory }}
42
git config --global user.name "${{ github.actor }}"
43
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
44
git add -- ${{ inputs.working-directory }}
0 commit comments