Apparently only single quotes work as string delimiters

This commit is contained in:
Oliver 2025-11-16 12:18:44 -07:00
parent 03b647cac1
commit eac6a02c04

View file

@ -43,7 +43,7 @@ jobs:
runs-on: act
needs:
- create-artifacts
if: vars.RELEASE_TO_FORGEJO == "yes"
if: vars.RELEASE_TO_FORGEJO == 'yes'
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
@ -68,7 +68,7 @@ jobs:
name: "Create Github release"
needs:
- create-artifacts
if: vars.RELEASE_TO_GITHUB == "yes"
if: vars.RELEASE_TO_GITHUB == 'yes'
steps:
- name: Download artifacts
uses: actions/download-artifact@v4