From 0a69a66e1a047bc31aff55ea731e38d2f7f6c5cc Mon Sep 17 00:00:00 2001 From: LegendaryGuard Date: Fri, 29 Nov 2024 13:44:30 +0100 Subject: [PATCH] GitHub workflows: Fix incorrect conditional syntax on Store QVM artifacts --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3a85a5e..e48cf68 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,7 +62,7 @@ jobs: - name: Store QVM artifacts # store only with Linux x86_64 - if: ${{ matrix.os != 'windows-latest' }} && ${{ matrix.arch != "x86" }} + if: ${{ matrix.os != 'windows-latest' && matrix.arch != 'x86' }} uses: actions/upload-artifact@v4 with: name: QVMs