From 5fbb643e61925e63d675a4c50ac3385ff5665dfa Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 13 May 2026 13:23:28 +0200 Subject: [PATCH] Add step to prepare environment by installing curl in publish-release job --- .gitea/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index a122749..2ab1ec5 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -35,6 +35,8 @@ jobs: runs-on: ubuntu-26.04 needs: build_arch steps: + - name: Prepare environment + run: apt update && apt install -y curl - name: Checkout Current Repo uses: actions/checkout@v4