From 4fd9c2064342fe6b2ed0e948eff460b55a6b6d8e Mon Sep 17 00:00:00 2001 From: Charlie Powell <31997505+cp2004@users.noreply.github.com> Date: Mon, 4 Jul 2022 23:16:32 +0100 Subject: [PATCH] :construction_worker: :bug: Fix build workflow Yeah 'and' only works in Python --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b334112..b54143b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,7 +49,7 @@ jobs: runs-on: ubuntu-latest needs: - build - if: github.event_name == "release" and github.repository == "cp2004/OctoPrint-GcodeMacros" + if: github.event_name == 'release' && github.repository == 'cp2004/OctoPrint-GCodeMacros' steps: - name: ⬇ Download build result uses: actions/download-artifact@v1