2025-01-17 00:52:46 +01:00
|
|
|
name: Build blog
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Explore-Gitea-Actions:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v4
|
2025-01-17 00:54:42 +01:00
|
|
|
- run: sudo apt -qqy update
|
|
|
|
- run: sudo apt -qqy install hugo
|
2025-01-17 00:53:53 +01:00
|
|
|
- run: hugo
|
2025-01-17 00:52:46 +01:00
|
|
|
|