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 7341499 commit 9da4651Copy full SHA for 9da4651
.circleci/config.yml
@@ -512,7 +512,9 @@ jobs:
512
name: deploy
513
command: |
514
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
+ 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
518
fi
519
520
deploy-production:
0 commit comments