From 660ca7353d9b66c1e96789fa07cf8e09a9dadc5c Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Mon, 9 Jun 2025 11:35:37 -0500 Subject: [PATCH] Fix: remove extra indentation in the run string I think YAML is leaving the spaces in there and passing ` build-essential` to the shell. There is no package with a space in the name, especially not a leading space. --- .gitea/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index a91005b..54464c3 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -35,9 +35,9 @@ jobs: run: > apt-get update; apt-get install -y --no-install-recommends - build-essential - git - git-buildpackage; + build-essential + git + git-buildpackage; - name: Checkout Repo (can't use actions/checkout@v4, no NodeJS) run: git clone ${{ github.event.repository.clone_url }} - name: Switch to Debian package branch