From d17ca2cea61e4a6639de7ea4322e8f9aaaf21138 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 4 Dec 2025 13:53:39 +0900 Subject: [PATCH] .gitea/workflows: fix deb building args --- .gitea/workflows/publish-deb.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitea/workflows/publish-deb.yml b/.gitea/workflows/publish-deb.yml index 92807cf..b826adf 100644 --- a/.gitea/workflows/publish-deb.yml +++ b/.gitea/workflows/publish-deb.yml @@ -49,10 +49,7 @@ jobs: run: cargo install cargo-deb - name: Build deb package - run: | - ./create-deb.sh \ - ${{ inputs.deb_version != "" && "--deb-version " + inputs.deb_version || "" }} \ - ${{ inputs.deb_revision != "" && "--deb-revision " + inputs.deb_revision || "" }} + run: ./create-deb.sh ${{ inputs.deb_version != "" && "--deb-version " + inputs.deb_version || "" }} --deb-revision ${{ inputs.deb_revision }} - name: Upload deb package artifact uses: actions/upload-artifact@v3