We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9805de commit 836966bCopy full SHA for 836966b
action.yml
@@ -26,7 +26,16 @@ inputs:
26
runs:
27
using: composite
28
steps:
29
- - run: ${{ github.action_path }}/scripts/run.sh
+ - env:
30
+ # Manually setting INPUT_* variables here until
31
+ # https://github.com/actions/runner/issues/665 is resolved:
32
+ INPUT_APT_OPTS: ${{ inputs.apt-opts }}
33
+ INPUT_ARTIFACTS_DIR: ${{ inputs.artifacts-dir }}
34
+ INPUT_BUILDPACKAGE_OPTS: ${{ inputs.buildpackage-opts }}
35
+ INPUT_DOCKER_IMAGE: ${{ inputs.docker-image }}
36
+ INPUT_EXTRA_BUILD_DEPS: ${{ inputs.extra-build-deps }}
37
+ INPUT_SOURCE_DIR: ${{ inputs.source-dir }}
38
+ run: ${{ github.action_path }}/scripts/run.sh
39
shell: bash
40
branding:
41
color: red
0 commit comments