We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6602232 commit de3a874Copy full SHA for de3a874
.circleci/config.yml
@@ -270,7 +270,7 @@ jobs:
270
- run:
271
name: Trigger database update via API
272
command: |
273
- export VERSION_FROM_TAG=$([[ ${CIRCLE_TAG} -eq "v" ]] && echo ${CIRCLE_TAG:1:20} || echo ${CIRCLE_TAG})
+ export VERSION_FROM_TAG=$([[ ${CIRCLE_TAG} =~ ^v.* ]] && echo ${CIRCLE_TAG:1:20} || echo ${CIRCLE_TAG})
274
export SALESFORCE_VERSION=$(cat package.json | jq -r .slds.id)
275
export VERSION_FROM_PACKAGE=$(cat package.json | jq -r .version)
276
curl --location --request PATCH 'https://api.lightningdesignsystem.com/v1/release' \
0 commit comments