-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 1.06 KB
/
deploy.yml
File metadata and controls
51 lines (42 loc) · 1.06 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
43
44
45
46
47
48
49
50
51
name: 🚀 hugo publish
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Update theme
run: git submodule update --init --recursive
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
# - run: |
# npm install
# npm i -g postcss-cli
# npm i && HUGO_ENVIRONMENT=production hugo --gc
- name: Build
run: hugo --enableGitInfo --minify
# - name: Deploy
# uses: peaceiris/actions-gh-pages@v3
# with:
# publish_branch: gh-pages
# publish_dir: ./public
# github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: public
fqdn: anotherdevops.blog
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}