-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (34 loc) · 1.01 KB
/
eleventy_build.yml
File metadata and controls
42 lines (34 loc) · 1.01 KB
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: Eleventy Build
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v2 # Check out the repository
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Cache npm
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
- run: npm ci # Install dependencies
- run: npm run build # Build the site
# Copy the dist/ folder into _site/dist
- run: cp -r dist/ _site/dist
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }} # GitHub token automatically generated
publish_dir: './_site' # Directory to deploy
exclude_assets: '.github,**/.gitignore'
cname: zinc.style