From 35cb390d4ae83f5744f121cb9e239f5f7df2de0b Mon Sep 17 00:00:00 2001 From: John Tompkins Date: Thu, 18 Feb 2021 15:05:41 -0800 Subject: [PATCH] Fix release failures due to double quoted Strings (#357) * Update pypi release Error with double quotes seems to be blocking release * Update maven-release.yaml --- .github/workflows/maven-release.yaml | 2 +- .github/workflows/pypi-release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven-release.yaml b/.github/workflows/maven-release.yaml index 9fd29e6a..b87d543d 100644 --- a/.github/workflows/maven-release.yaml +++ b/.github/workflows/maven-release.yaml @@ -7,7 +7,7 @@ on: jobs: build: - if: endsWith(github.ref, "-lib") + if: endsWith(github.ref, '-lib') env: AWS_DEFAULT_REGION: us-east-1 AWS_REGION: us-east-1 diff --git a/.github/workflows/pypi-release.yaml b/.github/workflows/pypi-release.yaml index 8907a338..6a7901df 100644 --- a/.github/workflows/pypi-release.yaml +++ b/.github/workflows/pypi-release.yaml @@ -7,7 +7,7 @@ on: jobs: build: - if: endsWith(github.ref, "-plugin") + if: endsWith(github.ref, '-plugin') runs-on: ubuntu-latest steps: - uses: actions/checkout@v2