2024-08-27 03:52:57 +00:00
|
|
|
name: Build Hugo Image
|
|
|
|
on:
|
2024-08-27 04:03:38 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2024-08-27 03:52:57 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-hugo-image:
|
|
|
|
runs-on: gitea-main
|
2024-08-27 04:03:38 +00:00
|
|
|
container:
|
|
|
|
image: docker:stable-dind
|
2024-08-27 03:52:57 +00:00
|
|
|
steps:
|
2024-08-27 04:07:25 +00:00
|
|
|
- run: docker build ${{ gitea.action_path }}/website/ -t shockrah/hugo
|
2024-08-27 03:52:57 +00:00
|
|
|
|