From bcd56da5c1837c050006dbf7fd853370d0139532 Mon Sep 17 00:00:00 2001 From: "Mike A. Trethewey" Date: Thu, 27 Feb 2020 02:25:28 -0800 Subject: [PATCH] Try again --- .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 974f2c0a..9d66ef1e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -214,7 +214,7 @@ jobs: body: ${{ steps.release_notes.outputs.body }} draft: true prerelease: true - if: contains(${{ steps.debug_info.outputs.github_tag }},'p.') or contains(${{ steps.debug_info.outputs.github_tag }}, 'pre.') + if: contains(steps.debug_info.outputs.github_tag,'p.') or contains(steps.debug_info.outputs.github_tag, 'pre.') # create a release - name: Create a Release id: create_release @@ -227,7 +227,7 @@ jobs: body: ${{ steps.release_notes.outputs.body }} draft: true prerelease: false - if: not contains(${{ steps.debug_info.outputs.github_tag }},'p.') and not contains(${{ steps.debug_info.outputs.github_tag }}, 'pre.') + if: not contains(steps.debug_info.outputs.github_tag,'p.') and not contains(steps.debug_info.outputs.github_tag, 'pre.') # upload linux archive asset - name: Upload Linux Archive Asset id: upload-linux-asset