From 992a95d37baf3e73fe8034a6d155c76a03820830 Mon Sep 17 00:00:00 2001 From: d3vyce Date: Sun, 11 Feb 2024 12:28:00 +0100 Subject: [PATCH] fix: hugo image build --- .gitea/workflows/build_hugo_image.yml | 12 ++++++------ Dockerfile | 2 +- README.md | 1 + 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/build_hugo_image.yml b/.gitea/workflows/build_hugo_image.yml index dcc5633..86b0147 100644 --- a/.gitea/workflows/build_hugo_image.yml +++ b/.gitea/workflows/build_hugo_image.yml @@ -3,7 +3,7 @@ name: Build Hugo Docker Image on: push: branches: - - main + - hugo_update jobs: build docker: @@ -11,11 +11,11 @@ jobs: 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: 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 diff --git a/Dockerfile b/Dockerfile index 4a6dbac..6b2bba1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM git.d3vyce.fr/d3vyce/hugo:latest AS build WORKDIR /opt/blog COPY . /opt/blog/ -RUN git submodule update --recursive +RUN git submodule update --init --recursive RUN hugo diff --git a/README.md b/README.md index 998e9c4..192e85d 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ ## Install ``` +export PATH=$PATH:/usr/local/go/bin CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@latest git submodule update --recursive ``` \ No newline at end of file