We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e55749a commit 04753ebCopy full SHA for 04753eb
.github/build.sh
@@ -6,6 +6,8 @@
6
# Push it to the gh-pages branch.
7
git clone --depth=1 --branch=gh-pages git@github.com:scijava/status.scijava.org site &&
8
mv -f index-new.html site/index.html &&
9
+git config --global user.name github-actions &&
10
+git config --global user.email github-actions@github.com &&
11
cd site &&
12
if git diff --quiet index.html
13
then
.github/workflows/build.yml
@@ -16,7 +16,4 @@ jobs:
16
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
17
18
- name: Execute the build
19
- run: |
20
- git config user.name github-actions
21
- git config user.email github-actions@github.com
22
- .github/build.sh
+ run: .github/build.sh
0 commit comments