generated from cncf/hugo-netlify-starter
-
Notifications
You must be signed in to change notification settings - Fork 165
92 lines (82 loc) · 2.47 KB
/
preview.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Sample workflow for building and deploying a Hugo site to GitHub Pages
name: Deploy Hugo site
on:
pull_request:
push:
branches:
- 'next'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN
permissions:
contents: read
pages: read
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
# Default to bash
defaults:
run:
shell: bash
env:
HUGO_VERSION: 0.139.0
HUGO_ENVIRONMENT: production
NETLIFY_SITE_NAME: bucolic-gaufre-15c8dc
DART_SASS_VERSION: 1.81.0
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Install Dart Sass
run: sudo snap install dart-sass
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js dependencies
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
- name: Build with Hugo
env:
HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache
run: |
hugo mod get \
&& hugo build \
--minify \
--buildFuture \
--disableKinds="robotsTXT" \
--destination="./build"
- name: Check
run: ls -R
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
path: './build'
# Deployment job
deploy:
runs-on: ubuntu-latest
environment: Netlify
needs: build
steps:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
path: './'
- name: Check
run: ls -R
- name: Netlify Actions
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
uses: nwtgck/[email protected]
with:
publish-dir: './artifact'
fails-without-credentials: true
github-token: ${{ secrets.GITHUB_TOKEN }}
production-branch: next
github-deployment-environment: Netlify