We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bbc320 commit 24f0dc8Copy full SHA for 24f0dc8
1 file changed
.github/workflows/prerelease.yml
@@ -17,7 +17,7 @@ jobs:
17
- name: Install Dependencies
18
run: yarn
19
- name: Initialize asterics-docs
20
- run: yarn docs init
+ run: yarn docs init --no-reference
21
- name: Setup docs
22
run: yarn docs setup
23
- name: Build
@@ -31,8 +31,10 @@ jobs:
31
run: |
32
rm -rf gh-pages/next
33
cp -r dist gh-pages/next
34
+ git config --global user.name "${{ github.actor }}"
35
+ git config --global user.email "<>"
36
git --git-dir=gh-pages/.git --work-tree=gh-pages/ add .
37
git --git-dir=gh-pages/.git --work-tree=gh-pages/ status
38
git --git-dir=gh-pages/.git --work-tree=gh-pages/ commit -m "docs: prerelease"
- git --git-dir=gh-pages/.git --work-tree=gh-pages/ log -1
39
+ git --git-dir=gh-pages/.git --work-tree=gh-pages/ log -2
40
git --git-dir=gh-pages/.git --work-tree=gh-pages/ push
0 commit comments