From f213c5a711909b3af91bdf64d5dd2e22d1a9758a Mon Sep 17 00:00:00 2001 From: William Diakite Date: Wed, 23 Jul 2025 12:16:49 -0400 Subject: [PATCH] use ubuntu and setup node --- .forgejo/workflows/deploy.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 6ee4e60..d391dae 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -9,10 +9,7 @@ on: jobs: deploy: - runs-on: docker - container: - image: debian:bullseye - options: --network=host # (Optional) + runs-on: ubuntu-latest steps: - name: Checkout repo @@ -20,6 +17,11 @@ jobs: with: persist-credentials: false + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: 20 + - name: Deploy with Docker run: | docker compose down