From 236f138ab73e24b03ebc0fbdad553f5f19a211af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Tue, 11 May 2021 13:23:56 +0200 Subject: [PATCH] Fix compare syntax (#50451) --- .github/workflows/wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 2dc8eb1d29b..16818a37cb2 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -29,7 +29,7 @@ jobs: - name: Create requirements_diff file run: | - if [[ ${{ github.event_name }} ~= (schedule|workflow_dispatch) ]]; then + if [[ ${{ github.event_name }} =~ (schedule|workflow_dispatch) ]]; then touch requirements_diff.txt else curl -s -o requirements_diff.txt https://raw.githubusercontent.com/home-assistant/core/master/requirements.txt