15 lines
278 B
YAML
15 lines
278 B
YAML
|
name: Build blog
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
Explore-Gitea-Actions:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v4
|
||
|
- name: Install hugo
|
||
|
run: sudo apt install hugo
|
||
|
- name: Build blog
|
||
|
run: hugo
|
||
|
|