add hugo build image
All checks were successful
Build Hugo Docker Image / build docker (push) Successful in 5m9s
All checks were successful
Build Hugo Docker Image / build docker (push) Successful in 5m9s
This commit is contained in:
parent
52e3025a1c
commit
fafc4224c8
43
.gitea/workflows/build_hugo_image.yml
Normal file
43
.gitea/workflows/build_hugo_image.yml
Normal file
@ -0,0 +1,43 @@
|
||||
name: Build Hugo Docker Image
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build docker:
|
||||
runs-on: linux_amd
|
||||
steps:
|
||||
- name: checkout code
|
||||
uses: actions/checkout@v3
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v42
|
||||
with:
|
||||
files: hugo.Dockerfile
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
- name: Login to Docker registry
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
registry: git.d3vyce.fr
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GIT_TOKEN }}
|
||||
- name: test
|
||||
run: ls -la
|
||||
# - name: Build and push
|
||||
# uses: docker/build-push-action@v4
|
||||
# with:
|
||||
# context: .
|
||||
# file: ./hugo.Dockerfile
|
||||
# platforms: linux/amd64
|
||||
# push: true
|
||||
# tags: git.d3vyce.fr/d3vyce/hugo:latest
|
||||
|
||||
- name: Build and Push
|
||||
run: |
|
||||
docker build -f hugo.Dockerfile -t git.d3vyce.fr/d3vyce/hugo:latest .
|
||||
docker push git.d3vyce.fr/d3vyce/hugo:latest
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
||||
# Hugo and Blowfish
|
||||
resources
|
||||
public
|
||||
|
||||
#others
|
||||
node_modules
|
||||
|
@ -2,5 +2,6 @@
|
||||
## Install
|
||||
|
||||
```
|
||||
|
||||
CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@latest
|
||||
git submodule update --recursive
|
||||
```
|
10
hugo.Dockerfile
Normal file
10
hugo.Dockerfile
Normal file
@ -0,0 +1,10 @@
|
||||
FROM golang:1.22-alpine AS build
|
||||
|
||||
ARG CGO=1
|
||||
ENV CGO_ENABLED=${CGO}
|
||||
ENV GOOS=linux
|
||||
ENV GO111MODULE=on
|
||||
|
||||
RUN apk update && \
|
||||
apk add --no-cache gcc musl-dev g++ git
|
||||
RUN go install -tags extended github.com/gohugoio/hugo@v0.122.0
|
Loading…
x
Reference in New Issue
Block a user