Skip to content

Commit 9da4651

Browse files
authored
CI: fix verdaccio deploy step (#7035)
* fix path in verdaccio deploy * build on PR * revert * enable comments on PR * loop over verdaccio dir * add back branch filters
1 parent 7341499 commit 9da4651

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,9 @@ jobs:
512512
name: deploy
513513
command: |
514514
if [ $AZURE_STORAGE_SAS_TOKEN ]; then
515-
azcopy copy "/tmp/verdaccio_dist/*/verdaccio/*" "https://reactspectrum.blob.core.windows.net/reactspectrum/$CIRCLE_SHA1/verdaccio${AZURE_STORAGE_SAS_TOKEN}" --recursive
515+
for dir in /tmp/verdaccio_dist/*/verdaccio; do
516+
azcopy copy "$dir/*" "https://reactspectrum.blob.core.windows.net/reactspectrum/$CIRCLE_SHA1/verdaccio${AZURE_STORAGE_SAS_TOKEN}" --recursive
517+
done
516518
fi
517519
518520
deploy-production:

0 commit comments

Comments
 (0)