Skip to content

Commit d52b0e7

Browse files
committed
add logging
1 parent e5a2892 commit d52b0e7

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/actions/config-poetry/config-poetry.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@ set_build_env() {
1313
}
1414

1515
config_poetry() {
16-
jf config add repox --artifactory-url "$ARTIFACTORY_URL" --access-token "$ARTIFACTORY_ACCESS_TOKEN"
17-
jf poetry-config --server-id-resolve repox --repo-resolve "$ARTIFACTORY_PYPI_REPO"
18-
jf poetry install --build-name="$PROJECT" --build-number="$BUILD_NUMBER"
16+
echo "config add repox"
17+
jf config add repox --artifactory-url "$ARTIFACTORY_URL" --access-token "$ARTIFACTORY_ACCESS_TOKEN"
18+
echo "poetry-config"
19+
jf poetry-config --server-id-resolve repox --repo-resolve "$ARTIFACTORY_PYPI_REPO"
20+
echo "poetry install"
21+
jf poetry install --build-name="$PROJECT" --build-number="$BUILD_NUMBER" -v
1922
}
2023

2124
main() {

0 commit comments

Comments
 (0)