From 746d3974a01c31c282007397c6585e52f239a07d Mon Sep 17 00:00:00 2001 From: Sebastian Stenzel Date: Fri, 18 Mar 2022 14:54:20 +0100 Subject: [PATCH] treat workflow input as string see https://github.com/actions/runner/issues/1483 --- .github/workflows/debian.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index 83084121d..3f713bce8 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -105,7 +105,7 @@ jobs: cryptomator_*_amd64.deb cryptomator_*.asc - name: Run dput to beta repo - if: startsWith(github.ref, 'refs/tags/') || github.event.inputs.dput + if: startsWith(github.ref, 'refs/tags/') || github.event.inputs.dput == 'true' run: dput ppa:sebastian-stenzel/cryptomator-beta cryptomator_*_source.changes - name: Publish Debian package on GitHub Releases if: startsWith(github.ref, 'refs/tags/')