Skip to content

Commit 6999c07

Browse files
committed
Manually set INPUT_* variables until actions/runner#665 is resolved
1 parent f369626 commit 6999c07

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

action.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,16 @@ inputs:
2626
runs:
2727
using: composite
2828
steps:
29-
- run: ${{ github.action_path }}/scripts/run.sh
29+
- 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
3039
shell: bash
3140
branding:
3241
color: red

0 commit comments

Comments
 (0)