From 29b0f563b73faa46e1af7f70469126751e0a57e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Thorben=20Hinz?= Date: Wed, 28 Oct 2020 00:03:10 +0100 Subject: [PATCH] Manually set INPUT_* variables until actions/runner#665 is resolved --- action.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index e316ce1..2eb5629 100644 --- a/action.yml +++ b/action.yml @@ -26,7 +26,16 @@ inputs: runs: using: composite steps: - - run: ${{ github.action_path }}/scripts/run.sh + - env: + # Manually setting INPUT_* variables here until + # https://github.com/actions/runner/issues/665 is resolved: + INPUT_APT_OPTS: ${{ inputs.apt-opts }} + INPUT_ARTIFACTS_DIR: ${{ inputs.artifacts-dir }} + INPUT_BUILDPACKAGE_OPTS: ${{ inputs.buildpackage-opts }} + INPUT_DOCKER_IMAGE: ${{ inputs.docker-image }} + INPUT_EXTRA_BUILD_DEPS: ${{ inputs.extra-build-deps }} + INPUT_SOURCE_DIR: ${{ inputs.source-dir }} + run: ${{ github.action_path }}/scripts/run.sh shell: bash branding: color: red