We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ccd9ab commit 98c9230Copy full SHA for 98c9230
.github/workflows/_publish-data-platform-data-diff.yml
@@ -84,6 +84,7 @@ jobs:
84
DEV_VERSION="$CURRENT_VERSION-dev+${GITHUB_SHA:0:7}"
85
echo $DEV_VERSION > version.txt
86
poetry run toml set --toml-path pyproject.toml tool.poetry.version $DEV_VERSION || { echo "Failed to set dev version in pyproject.toml"; exit 1; }
87
+ poetry build --format wheel || { echo "Failed to build the wheel"; exit 1; }
88
poetry config repositories.data-platform-data-diff ${{ secrets.CODEARTIFACT_URL }}
89
poetry publish --repository data-platform-data-diff --username aws --password $(aws codeartifact --region ${{ secrets.AWS_REGION }} get-authorization-token --domain coinlist --query authorizationToken --output text 2>/dev/null) || { echo "Failed to publish the dev package"; exit 1; }
90
0 commit comments