.gitea/workflows: fix deb building args
All checks were successful
Build and test / check (push) Successful in 1m55s
Build and test / build (push) Successful in 3m4s
Build and test / test (push) Successful in 3m32s
Build and test / check-license (push) Successful in 6m17s
Build and test / docs (push) Successful in 4m52s

This commit is contained in:
2025-12-04 13:53:39 +09:00
parent a6804e01df
commit 7f1221fae1

View File

@@ -50,9 +50,11 @@ jobs:
- name: Build deb package
run: |
./create-deb.sh \
${{ inputs.deb_version != "" && "--deb-version " + inputs.deb_version || "" }} \
CREATE_DEB_ARGS=(
${{ inputs.deb_version != "" && "--deb-version " + inputs.deb_version || "" }}
${{ inputs.deb_revision != "" && "--deb-revision " + inputs.deb_revision || "" }}
)
./create-deb.sh "${CREATE_DEB_ARGS[@]}"
- name: Upload deb package artifact
uses: actions/upload-artifact@v3