24 lines
646 B
YAML
24 lines
646 B
YAML
|
name: Deploy resume page
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: ["master"]
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
container:
|
||
|
volumes:
|
||
|
- homepage:/homepage
|
||
|
env:
|
||
|
HUGO_VERSION: 0.114.0
|
||
|
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 \
|
||
|
&& dpkg -i ${{ runner.temp }}/hugo.deb
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Build with Hugo
|
||
|
run: hugo -s /workspace/chebser/resume --minify -d /homepage
|