From c09f6710640b3d6cbd2b2cf6ec6c6cf575091424 Mon Sep 17 00:00:00 2001 From: Cody Olsen Date: Wed, 17 Aug 2022 12:43:48 +0200 Subject: [PATCH] chore: fix syntax --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 511ea61..1e52d72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ on: type: boolean concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-${{ github.event.inputs.release || "no-release" }} + group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-${{ github.event.inputs.release || 'no-release' }} cancel-in-progress: true jobs: @@ -36,7 +36,7 @@ jobs: echo "Publish new release: $RELEASE" echo "Run tests: $TEST" env: - GROUP: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-${{ github.event.inputs.release || "no-release" }} + GROUP: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-${{ github.event.inputs.release || 'no-release' }} RELEASE: ${{ inputs.release }} TEST: ${{ inputs.test }}