Skip to content

Commit 924ce0b

Browse files
committed
Remove attach workspace step since this is unnecessary
1 parent 2503699 commit 924ce0b

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -268,15 +268,13 @@ jobs:
268268

269269
steps:
270270
- checkout
271-
- attach_workspace:
272-
at: workspace
273271

274272
- run:
275273
name: Trigger database update via API
276274
command: |
277275
export VERSION_FROM_TAG=$([[ ${CIRCLE_TAG} =~ ^v.* ]] && echo ${CIRCLE_TAG:1:20} || echo ${CIRCLE_TAG})
278-
export SALESFORCE_VERSION=$(cat workspace/package.json | jq -r .slds.id)
279-
export VERSION_FROM_PACKAGE=$(cat workspace/package.json | jq -r .version)
276+
export SALESFORCE_VERSION=$(cat package.json | jq -r .slds.id)
277+
export VERSION_FROM_PACKAGE=$(cat package.json | jq -r .version)
280278
curl --location --request PATCH 'https://api.lightningdesignsystem.com/v1/release' \
281279
--header 'Content-Type: application/json' \
282280
--header 'Authorization: Bearer ${DSE_API_RELEASE_TOKEN}' \
@@ -542,4 +540,3 @@ workflows:
542540
- vrt-desktop
543541
- vrt-mobile
544542
- vrt-legacy
545-

0 commit comments

Comments
 (0)