We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0533cff commit f760511Copy full SHA for f760511
.github/deploy.sh
@@ -33,7 +33,4 @@ if git diff --exit-code --quiet; then
33
exit 0
34
fi
35
36
-git add .
37
-git commit -m "Automatic deploy to GitHub Pages: ${SHA}"
38
-
39
-git push "$SSH_REPO" "$TARGET_BRANCH"
+git diff
.github/workflows/deploy.yml
@@ -6,6 +6,7 @@ on:
6
- master
7
tags:
8
- rust-1.**
9
+ pull_request:
10
11
env:
12
TARGET_BRANCH: 'gh-pages'
@@ -35,6 +36,4 @@ jobs:
echo "::set-env name=TAG_NAME::$TAG"
- name: Deploy
run: |
- eval "$(ssh-agent -s)"
- ssh-add - <<< "${{ secrets.DEPLOY_KEY }}"
40
bash .github/deploy.sh
0 commit comments