This commit is contained in:
parent
8560c2564b
commit
108c6a4bd0
24
.gitea/workflows/deploy.yaml
Normal file
24
.gitea/workflows/deploy.yaml
Normal 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
|
Reference in New Issue
Block a user