From 62f86a080244ce7470d0e825f3252826b8ad9850 Mon Sep 17 00:00:00 2001 From: James Brumond Date: Fri, 18 Aug 2023 17:46:47 -0700 Subject: [PATCH] separate checkout and build so checkout runs on a more capable image --- .gitea/workflows/build.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 1d6b59c..5fe1301 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -7,16 +7,21 @@ on: - master jobs: + checkout: + runs-on: ubuntu-latest + container: + image: catthehacker/ubuntu:act-latest + steps: + - name: Check out the repo + uses: actions/checkout@v3 + build: runs-on: ubuntu-latest container: image: gitea.jbrumond.me/doc-utils/utils:0.2 steps: - - name: Check out the repo - uses: actions/checkout@v3 - - name: Build docs to webpage - run: docs2website ./config.yaml + run: docs2website config.yaml - name: List files run: ls -l www