-
Notifications
You must be signed in to change notification settings - Fork 22
42 lines (35 loc) · 1.04 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
name: Jekyll site CI
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Read .tool-versions
uses: marocchino/tool-versions-action@v1
id: versions
- uses: actions/setup-node@v3
with:
node-version: ${{steps.versions.outputs.nodejs}}
cache: 'npm'
- run: npm install
- name: Build
uses: jerryjvl/jekyll-build-action@v1
- name: Tailscale
uses: tailscale/github-action@v2
with:
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
version: '1.50.1'
tags: tag:static-sites
- name: Deploy to Static Sites Host
uses: burnett01/rsync-deployments@6.0.0
with:
switches: -avzr --delete
path: _site/
remote_path: /var/www/website/
remote_host: ${{ secrets.DEPLOY_STATIC_SITE_HOST }}
remote_user: ${{ secrets.DEPLOY_STATIC_SITE_USER }}
remote_key: ${{ secrets.DEPLOY_STATIC_SITE_KEY }}