From 85ee006ad0e8f1305811b332ff85b12989c15702 Mon Sep 17 00:00:00 2001 From: Vectry Date: Tue, 10 Feb 2026 23:22:08 +0000 Subject: [PATCH] Fix deploy workflow: use ubuntu-latest with Docker CLI install --- .gitea/workflows/deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 1180289..d382d6b 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -11,13 +11,17 @@ env: jobs: deploy: - runs-on: self-hosted + runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 with: fetch-depth: 0 + - name: Install Docker CLI + run: | + curl -fsSL https://get.docker.com | sh + - name: Write environment file run: | cat > .env << EOF