Add Gitea Action
All checks were successful
Deploy resume page / build (push) Successful in 10s

This commit is contained in:
Serghei Cebotari 2023-12-12 21:49:24 +03:00
parent 8560c2564b
commit 108c6a4bd0

View File

@ -0,0 +1,24 @@
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