Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit 33eb5f8

Browse files
committed
ci: Strip equals from pypi tokens
Signed-off-by: John Andersen <[email protected]>
1 parent b6cc3a7 commit 33eb5f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
if [ "x${PLUGIN}" = "x." ]; then
7878
export TWINE_PASSWORD=${{ secrets.PYPI_DFFML }}
7979
else
80-
export TWINE_PASSWORD=$(grep "${PLUGIN}" "${PYPI_TOKENS}")
80+
export TWINE_PASSWORD=$(grep "${PLUGIN}" "${PYPI_TOKENS}" | sed 's/^[^=]*=//g')
8181
fi
8282
rm ${PYPI_TOKENS}
8383
./.ci/run.sh

0 commit comments

Comments
 (0)