From 15781b685d3457d4b81060a4b5634b558e60639c Mon Sep 17 00:00:00 2001 From: Sebastian Stenzel Date: Wed, 6 Jul 2022 17:09:02 +0200 Subject: [PATCH] use new github "inputs" context, where booleans are supposed to actually be booleans see https://github.com/actions/runner/issues/1483 see https://docs.github.com/en/actions/learn-github-actions/contexts#inputs-context [ci skip] --- .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 fb8b3a423..6f43b5155 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -111,7 +111,7 @@ jobs: cryptomator_*_amd64.deb cryptomator_*.asc - name: Publish on PPA - if: startsWith(github.ref, 'refs/tags/') || github.event.inputs.dput == 'true' + if: startsWith(github.ref, 'refs/tags/') || inputs.dput run: dput ppa:sebastian-stenzel/cryptomator-beta cryptomator_*_source.changes - name: Publish Debian package on GitHub Releases if: startsWith(github.ref, 'refs/tags/')