From 294e310000b69ace6937d39070fd06fde5f31411 Mon Sep 17 00:00:00 2001 From: Sangelo Date: Wed, 10 Jan 2024 16:48:42 +0100 Subject: [PATCH] Change to different container image --- .forgejo/workflows/deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index f059100..1f8581f 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -4,16 +4,16 @@ jobs: deploy: runs-on: gitpot_main container: - image: code.forgejo.org/oci/node:20-bookworm + image: ghcr.io/peaceiris/hugo:latest-full steps: - name: Checkout Repository uses: actions/checkout@v4 - - name: Install Go - run: | - apt-get update - apt-get install -y golang-go + # - name: Install Dependencies + # run: | + # apt-get update + # apt-get install -y golang-go - name: Setup Hugo uses: https://github.com/peaceiris/actions-hugo@v2