Skip to content

Commit 35cb390

Browse files
author
John Tompkins
authored
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
1 parent e6c2b54 commit 35cb390

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/maven-release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
build:
10-
if: endsWith(github.ref, "-lib")
10+
if: endsWith(github.ref, '-lib')
1111
env:
1212
AWS_DEFAULT_REGION: us-east-1
1313
AWS_REGION: us-east-1

.github/workflows/pypi-release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
build:
10-
if: endsWith(github.ref, "-plugin")
10+
if: endsWith(github.ref, '-plugin')
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)