Skip to content

Commit

Permalink
Fix release failures due to double quoted Strings (#357)
Browse files Browse the repository at this point in the history
* Update pypi release

Error with double quotes seems to be blocking release

* Update maven-release.yaml
  • Loading branch information
John Tompkins authored Feb 18, 2021
1 parent e6c2b54 commit 35cb390
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 35cb390

Please sign in to comment.