From: Myra Date: Wed, 25 Jun 2025 11:56:47 +0000 (+0200) Subject: Properly evaluate publish condition for master branch (#38556) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=6cffa8aabe48304a41bf4a1354ed2e1191652c5a;p=space-station-14.git Properly evaluate publish condition for master branch (#38556) --- diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bb50164b34..3ce5901841 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Fail if we are attempting to run on the master branch - if: ${{GITHUB.REF_NAME == 'master'}} && github.repository == 'space-wizards/space-station-14' + if: ${{GITHUB.REF_NAME == 'master' && github.repository == 'space-wizards/space-station-14'}} run: exit 1 - name: Install dependencies