Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Lahteine <github@thinkyhead.com>2020-01-21 13:17:44 +0300
committerScott Lahteine <github@thinkyhead.com>2020-01-21 13:20:35 +0300
commit5f8a5e91acb40c908ee4f453fe837516f5d6fc4e (patch)
tree29f5769abe4c3b63416598962ec3674bd78b2032 /.github
parent8633ffdcb3fae1bd70d283a92fcce1f6efd05b30 (diff)
Deploy on specific deploy push
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/jekyll-pub.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/jekyll-pub.yml b/.github/workflows/jekyll-pub.yml
index 680ce455..c2ab0ece 100644
--- a/.github/workflows/jekyll-pub.yml
+++ b/.github/workflows/jekyll-pub.yml
@@ -1,7 +1,7 @@
#
# jekyll-pub.yml
#
-# Publish the Jekyll site whenever 'master' is pushed
+# Publish the Jekyll site whenever 'deploy' is pushed
#
name: Jekyll Deploy
@@ -9,7 +9,7 @@ name: Jekyll Deploy
on:
push:
branches:
- - master
+ - deploy
jobs:
deploy_site:
@@ -19,10 +19,10 @@ jobs:
uses: actions/setup-ruby@v1
with:
ruby-version: '>=2.4.4'
- - name: Check out 'master'
+ - name: Check out 'deploy'
uses: actions/checkout@v1
with:
- ref: master
+ ref: deploy
- name: Deploy Site
uses: BryanSchuetz/jekyll-deploy-gh-pages@master
env: