From eb776339e0677463aa876f607ebdad8bd7d56bb7 Mon Sep 17 00:00:00 2001 From: hahnec Date: Tue, 5 Jul 2022 12:38:02 +0200 Subject: [PATCH] fix(ne): use correct not equal operator --- .github/workflows/gh_actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh_actions.yml b/.github/workflows/gh_actions.yml index ecdc0ac..719049b 100644 --- a/.github/workflows/gh_actions.yml +++ b/.github/workflows/gh_actions.yml @@ -154,7 +154,7 @@ jobs: app_bundling: name: App Bundling needs: unit_test - if: github.event_name == 'push' && ne(github.ref, 'refs/heads/master') + if: github.event_name == 'push' && github.ref != 'refs/heads/master' runs-on: ${{ matrix.os }} strategy: matrix: