From 432fdb4772d60ce64b743684ec773e7527f26596 Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Tue, 3 Oct 2023 19:22:47 +0200 Subject: [PATCH] GitHub Actions: Fix and in place of && --- .github/workflows/generate-conda-packages.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generate-conda-packages.yaml b/.github/workflows/generate-conda-packages.yaml index f83019f8f..c3dcff475 100644 --- a/.github/workflows/generate-conda-packages.yaml +++ b/.github/workflows/generate-conda-packages.yaml @@ -220,7 +220,7 @@ jobs: - name: Upload conda packages (noarch) shell: bash -l {0} # Upload by default on schedule events, and on workflow dispatch only if input upload_conda_binaries is 'true' - if: matrix.conda_platform == 'linux-64' and (github.event_name == 'schedule' || github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.event.inputs.upload_conda_binaries == 'true')) + if: matrix.conda_platform == 'linux-64' && (github.event_name == 'schedule' || github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.event.inputs.upload_conda_binaries == 'true')) env: ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }} run: |