From 69e05af37bf4031a10e4b450a163c6e2b66816b2 Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Mon, 5 Dec 2022 22:01:29 +0100 Subject: [PATCH] Simplify input usage --- .github/workflows/build-python-packages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-python-packages.yml b/.github/workflows/build-python-packages.yml index 7893794..47b12f2 100644 --- a/.github/workflows/build-python-packages.yml +++ b/.github/workflows/build-python-packages.yml @@ -39,7 +39,7 @@ jobs: - name: Generate execution matrix id: generate-matrix run: | - [String[]]$configurations = "${{ github.event.inputs.platforms || 'ubuntu-18.04,ubuntu-20.04,ubuntu-22.04,macos-11,windows-2019_x64,windows-2019_x86' }}".Split(",").Trim() + [String[]]$configurations = "${{ inputs.platforms || 'ubuntu-18.04,ubuntu-20.04,ubuntu-22.04,macos-11,windows-2019_x64,windows-2019_x86' }}".Split(",").Trim() $matrix = @() foreach ($configuration in $configurations) { @@ -165,7 +165,7 @@ jobs: publish_release: name: Publish release - if: github.event_name == 'workflow_dispatch' && github.event.inputs.PUBLISH_RELEASES == 'true' + if: github.event_name == 'workflow_dispatch' && inputs.PUBLISH_RELEASES == 'true' needs: test_python runs-on: ubuntu-latest steps: