forked from NBCLab/NBCLab.github.io
-
Notifications
You must be signed in to change notification settings - Fork 4
47 lines (42 loc) · 1.06 KB
/
jekyll.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Jekyll site CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup pages
uses: actions/configure-pages@v3
- name: Build pages
uses: actions/jekyll-build-pages@v1
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: site
path: _site
deploy:
environment: zellerlab.org
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
name: Deploy
needs: build
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: site
path: _site
- name: Deploy
uses: easingthemes/ssh-deploy@main
with:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
REMOTE_USER: ${{ secrets.REMOTE_USER }}
TARGET: ${{ secrets.TARGET }}
SOURCE: _site/