File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 13
13
ref : hakyll
14
14
15
15
- name : Remove stale deployments
16
- run : ./.github/workflows/deployment/delete.sh $GITHUB_REF_NAME
16
+ run : ./.github/workflows/deployment/delete.sh ${{ github.event.ref }}
Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ set -eo pipefail
7
7
script_dir=$( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd)
8
8
source $script_dir /commons.sh
9
9
10
+ # Monkey patch html files by adding <meta name="robots" content="noindex, nofollow">.
11
+ # It will tell search bots like googlebot not to index this content.
12
+ search_robots_noindex () {
13
+ # find
14
+ }
15
+
10
16
deploy () {
11
17
if [[ ! -z " $GITHUB_REF_NAME " ]]; then
12
18
# The GITHUB_REF_NAME env variable is available in github actions.
You can’t perform that action at this time.
0 commit comments