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 a2e24a0 commit 5f3ca52Copy full SHA for 5f3ca52
.github/workflows/docsupdater.yaml
@@ -10,16 +10,16 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v2
13
+ - name: Set up Git
14
+ run: |
15
+ git config --global user.name "Anselm Kiefner"
16
+ git config --global user.email "[email protected]"
17
- name: Update docs/docs/index.md
18
run: |
19
echo "Generating docs/docs/index.md..."
20
cat README.md > docs/docs/index.md
21
- name: Commit and push changes
22
- git config --global user.name "coderatul"
- git config --global user.email "[email protected]"
23
git add docs/docs/index.md
24
git commit -m "Update docs/docs/index.md"
25
git push
-
0 commit comments