We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72c55bf commit 4ccd9abCopy full SHA for 4ccd9ab
.github/workflows/_publish-data-platform-data-diff.yml
@@ -84,7 +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 config repositories.data-platform-data-diff $CODEARTIFACT_URL
+ poetry config repositories.data-platform-data-diff ${{ secrets.CODEARTIFACT_URL }}
88
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; }
89
90
- name: Publish new version
0 commit comments