-
Notifications
You must be signed in to change notification settings - Fork 25
47 lines (42 loc) · 1.36 KB
/
deploy.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
# This workflow will do a clean install of node dependencies, build the source code, run integration and end-to-end tests, and deploy to GitHub Pages.
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Deploy on push to release-eleventy
on:
# pull_request:
# branches: [master]
push:
branches: [release-eleventy]
jobs:
build_and_deploy:
runs-on: macos-latest
strategy:
matrix:
# node-version: [8.x, 10.x, 12.x]
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install SSH Client 🔑
uses: webfactory/ssh-agent@v0.5.3
with:
ssh-private-key: ${{ secrets.SSH_KEY }}
- name: Run Webpack
run: cd _src && rm -rf node_modules && npm install && npm run build --if-present
env:
CI: true
- name: Build
run: bash _src/_compile.sh
env:
CI: true
- name: Deploy to gh-pages
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
SSH: true
BRANCH: gh-pages
FOLDER: build