-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (33 loc) · 1.05 KB
/
hugo.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
on:
push:
branches: ["master"]
workflow_dispatch:
concurrency:
group: "comparch"
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
update:
runs-on: ubuntu-22.04
steps:
- name: Install
run: sudo apt-get update && sudo apt-get install nodejs hugo rclone
- name: Checkout
uses: nschloe/action-cached-lfs-checkout@v1
- name: Cache NPM dependencies
uses: actions/cache@master
with:
path: themes/geekblog/node_modules
key: ${{ runner.OS }}-npm-cache-${{ hashFiles('themes/geekblog/package-lock.json') }}
- name: Build theme
working-directory: ${{ github.workspace }}/themes/geekblog
run: npm install && npm run build
- name: Build with Hugo
run: hugo
- name: Create ZIP Archive
run: zip -r site.zip public/
- name: Send ZIP to Web for deployment
run: |
curl -X POST -H "Authorization: Bearer ${{ secrets.FtpPass }}" -F "[email protected]" http://eval.comparch.edu.cvut.cz:1111/github-actions/update-web