Skip to content

Commit 66e949e

Browse files
authored
Merge pull request #28 from CBroz1/main
patch gh action double quote bug
2 parents 93a59a4 + c9f9113 commit 66e949e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/development.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
run: |
8787
PKG_NAME=$(python3 -c "print([p for p in __import__('setuptools').find_packages() if '.' not in p][0])")
8888
SDIST_PKG_NAME=$(echo ${PKG_NAME} | sed 's|_|-|g')
89-
PKG_VERSION=$(cat ${PKG_NAME}/version.py | awk -F\' '/__version__ = / {print $2}')
89+
PKG_VERSION=$(cat ${PKG_NAME}/version.py | awk -F\" '/__version__ = / {print $2}')
9090
echo "PKG_NAME=${PKG_NAME}" >> $GITHUB_ENV
9191
echo "PKG_VERSION=${PKG_VERSION}" >> $GITHUB_ENV
9292
echo "SDIST_PKG_NAME=${SDIST_PKG_NAME}" >> $GITHUB_ENV

0 commit comments

Comments
 (0)