Skip to content

Commit

Permalink
CI: fix verdaccio deploy step (adobe#7035)
Browse files Browse the repository at this point in the history
* fix path in verdaccio deploy

* build on PR

* revert

* enable comments on PR

* loop over verdaccio dir

* add back branch filters
  • Loading branch information
reidbarber committed Sep 16, 2024
1 parent 7341499 commit 9da4651
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,9 @@ jobs:
name: deploy
command: |
if [ $AZURE_STORAGE_SAS_TOKEN ]; then
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
azcopy copy "$dir/*" "https://reactspectrum.blob.core.windows.net/reactspectrum/$CIRCLE_SHA1/verdaccio${AZURE_STORAGE_SAS_TOKEN}" --recursive
done
fi
deploy-production:
Expand Down

0 comments on commit 9da4651

Please sign in to comment.