From 727b782ebc57b1254a7053fbf3552e21c5b5c3de Mon Sep 17 00:00:00 2001 From: Tom Trappmann Date: Mon, 22 Dec 2025 21:44:28 +0100 Subject: [PATCH] update image and install node --- .gitea/workflows/deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 4e17ab9..c1d250e 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -8,11 +8,14 @@ jobs: deploy: runs-on: main container: - image: node:20-bullseye + image: docker:27-git steps: - name: Checkout uses: actions/checkout@v4 + - name: Install node (for any JS actions you use) + run: apk add --no-cache nodejs npm + - name: Define image tag run: | echo "IMAGE=local/nautilusDesk:${{ gitea.sha }}" >> $GITEA_ENV