From 266d3db54fe037c0a10a072ec60465a3e03e16a1 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 12 Jul 2025 17:50:39 -0400 Subject: [PATCH] fixed action --- .forgejo/workflows/deploy.yml | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index c65d828..f8ea62a 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -3,18 +3,25 @@ jobs: deploy: runs-on: docker container: - image: alpine:edge + image: python:3.12-slim steps: - - run: apk add npm - - uses: actions/checkout@v4 - name: Install uv - run: apk add uv + run: | + apt-get update && \ + apt-get install -y curl ca-certificates && \ + curl -LsSf https://astral.sh/uv/install.sh | bash + - name: Install node + run: | + apt-get update && apt-get install -y curl gnupg ca-certificates && \ + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \ + apt-get install -y nodejs + - uses: actions/checkout@v4 # - name: Configure hut # run: | # apk add hut # echo ${{ secrets.HUT }} | hut init - name: Build run: | - cd ficd.sh - uv run --with "git+https://git.ficd.sh/ficd/ficd.sh" zona build --output public + cd $GITHUB_WORKSPACE + uv run --with "git+https://git.ficd.sh/ficd/zona.git" zona build --output public ls public