generated from cncf/hugo-netlify-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (47 loc) · 1.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Publish to GH Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout source
uses: actions/checkout@v3
with:
ref: main
submodules: true
- name: Checkout destination
uses: actions/checkout@v3
with:
ref: gh-pages
path: built-site
- name: Clean built-site
run: rm -rf ${GITHUB_WORKSPACE}/built-site/*
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install npm dependencies
run: npm install
- name: Setup Hugo
run: |
curl -L -o /tmp/hugo.tar.gz 'https://github.com/gohugoio/hugo/releases/download/v0.110.0/hugo_extended_0.110.0_linux-amd64.tar.gz'
tar -C /usr/local/bin -zxvf /tmp/hugo.tar.gz hugo
- name: Build
run: /usr/local/bin/hugo --cleanDestinationDir --gc
- name: Copy new build to built-site
run: cp -R public/* ${GITHUB_WORKSPACE}/built-site/
- name: Create CNAME file
run: echo 'tratteria.io' > ${GITHUB_WORKSPACE}/built-site/CNAME
- name: Deploy to gh-pages
run: |
cd ${GITHUB_WORKSPACE}/built-site
git add .
git config --global user.name 'GitHub Actions'
git config --global user.email '[email protected]'
git commit -m "Deploying to gh-pages from main"
git push origin gh-pages --force