From ebdba485ec75d1c8df4e49c8a99960b0a8884919 Mon Sep 17 00:00:00 2001 From: Peter Gaultney Date: Fri, 19 Feb 2021 10:22:58 -0600 Subject: [PATCH] fix silly publish regex --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 575b31e..b4f8ca3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -33,10 +33,10 @@ jobs: - name: Set release notes name run: | export RELEASE_NAME_VERSION=${{ github.event.release.name }} - echo "RELEASE_NAME_VERSION=${RELEASE_NAME_VERSION:1}" >> $GITHUB_ENV + echo "RELEASE_NAME_VERSION=${RELEASE_NAME_VERSION}" >> $GITHUB_ENV - name: Ensure new version is also set in CHANGES.md run: | - grep --regexp "\[${RELEASE_NAME_VERSION}\]" CHANGES.md + grep --regexp "${RELEASE_NAME_VERSION}" CHANGES.md - name: Setup & Build run: | python -m pip install --upgrade pip