Skip to content

Commit

Permalink
code artifact and versioning changes
Browse files Browse the repository at this point in the history
  • Loading branch information
priyaranjanpatil committed Dec 19, 2023
1 parent 86a3f41 commit 36d4247
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ jobs:
CURRENT_VERSION=$(aws codeartifact list-package-versions --domain $CA_DOMAIN --repository $CA_REPO --format generic --package $CA_PACKAGE --namespace $CA_NAMESPACE --query defaultDisplayVersion | jq -r ".")
echo "current version: $CURRENT_VERSION"
if [ "$CURRENT_VERSION" == "null" || "$CURRENT_VERSION" == ""]; then
if [ -z "$CURRENT_VERSION" ]; then
CURRENT_VERSION="1.0.0"
FLAG_INITIAL=true
fi
Expand Down

0 comments on commit 36d4247

Please sign in to comment.