From e40f811ed90464d30a4687870cba00d3b81562cd Mon Sep 17 00:00:00 2001 From: lordwektabyte Date: Sun, 31 Dec 2023 19:07:16 +0100 Subject: [PATCH] Use custom Dockerfile with node and pip --- .forgejo/workflows/mkdocs_publish.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/mkdocs_publish.yaml b/.forgejo/workflows/mkdocs_publish.yaml index 5a5f775..d797d31 100644 --- a/.forgejo/workflows/mkdocs_publish.yaml +++ b/.forgejo/workflows/mkdocs_publish.yaml @@ -16,8 +16,9 @@ env: jobs: build: runs-on: docker + container: + image: git.lordwektabyte.cat/lordwektabyte/node-pip:latest steps: - - run: apt-get update && apt-get install python3-pip -y - uses: https://code.forgejo.org/actions/checkout@v4 with: fetch-depth: 0 @@ -40,7 +41,7 @@ jobs: path: public - run: git switch --orphan $PUBLISH_BRANCH - run: git add public - - run: git mv public/{.[!.],}* . + - run: git mv public/* public/.domains . - run: git commit -m "Mkdocs Build" - run: git push -u origin $PUBLISH_BRANCH -f -- 2.30.2