From d39870fb5ff5d2cecc31873bada7d2969e579455 Mon Sep 17 00:00:00 2001 From: Gerard Braad Date: Fri, 6 Dec 2024 14:37:41 +0000 Subject: [PATCH] Use 24.04 image to use Podman --- .github/workflows/gh-pages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 589bd79..8514444 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -11,14 +11,14 @@ jobs: fail-fast: false matrix: os: - - ubuntu-latest + - ubuntu-24.04 steps: - uses: actions/checkout@v2 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Build - run: docker run --rm -v $PWD:/workspace quay.io/crc-org/hugo:0.127.0 --minify + run: podman run --rm -v $PWD:/workspace quay.io/crc-org/hugo:0.127.0 --minify - name: Deploy uses: peaceiris/actions-gh-pages@v3 if: github.ref == 'refs/heads/main'