From 9d754e947cddc988bd1f7b0d18803ba984bce575 Mon Sep 17 00:00:00 2001 From: rudy Date: Thu, 31 Mar 2022 09:27:33 +0200 Subject: [PATCH] fix(ci): only upload keysetcache on master --- .github/workflows/continuous-integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index d2d6649d3..ff8e6e826 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -79,7 +79,7 @@ jobs: chmod -R ugo+rwx /tmp/KeySetCache - name: Upload KeySetCache - if: ${{ matrix.compiler == 'gcc7' }} && github.ref == 'refs/heads/master' + if: ${{ matrix.compiler == 'gcc7' && github.ref == 'refs/heads/master' }} uses: actions/upload-artifact@v3 with: name: KeySetCache @@ -88,7 +88,7 @@ jobs: - name: Cleanup Old KeySetCache uses: Remagpie/gha-remove-artifact@v1 - if: ${{ matrix.compiler == 'gcc7' }} && github.ref == 'refs/heads/master' + if: ${{ matrix.compiler == 'gcc7' && github.ref == 'refs/heads/master' }} with: only-name: KeySetCache max-count: 1