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>2019-12-24 11:04:10 +0300
committerScott Lahteine <github@thinkyhead.com>2019-12-24 11:05:52 +0300
commit0794ff9e7d060b22c8ee1f722a2b0815d891482f (patch)
tree4b64f5cff90d8d9f6d8c23d346a962f49196f545 /.github
parent9c0958995e9310f566b7dc49039ac7330591b217 (diff)
Use Jekyll deploy by BryanSchuetz
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/jekyll-pub.yml17
1 files changed, 10 insertions, 7 deletions
diff --git a/.github/workflows/jekyll-pub.yml b/.github/workflows/jekyll-pub.yml
index d4dcee92..7ed559f7 100644
--- a/.github/workflows/jekyll-pub.yml
+++ b/.github/workflows/jekyll-pub.yml
@@ -4,18 +4,21 @@
# Publish the Jekyll site whenever 'master' is pushed
#
+name: Jekyll Deploy
+
on:
push:
branch:
- master
jobs:
- publish:
-
+ deploy_site:
runs-on: ubuntu-latest
-
steps:
- - name: Check out master
- uses: actions/checkout@v1
- - name: Publish the site
- run: source .github/mfpub.sh
+ - uses: actions/checkout@v1
+ - name: Build & Deploy to GitHub Pages
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_REPOSITORY: ${{ secrets.GITHUB_REPOSITORY }}
+ GITHUB_ACTOR: ${{ secrets.GITHUB_ACTOR }}
+ uses: BryanSchuetz/jekyll-deploy-gh-pages@master