Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update upload-plugins.sh #3910

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions oneclickinstaller/upload-plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ AccountKey=$(grep "cloud_public_storage_secret" global-values.yaml | awk -F ":"

# Content-plugins
rm -rf content-plugins
wget https://sunbirdartifact.blob.core.windows.net/artifacts/content-plugins-artifacts.zip:release-5.2.0_RC1_c7c385c_6 -O content-plugins.zip
wget https://sunbirdartifact.blob.core.windows.net/artifacts/content-plugins.zip -O content-plugins.zip
unzip content-plugins.zip -d content-plugins >> /dev/null
unzip content-plugins/content-plugins.zip >> /dev/null
az storage blob upload-batch -d sunbird-contents-dev/content-plugins --account-name $AccountName --account-key $AccountKey -s content-plugins --overwrite true

# Content-editors
rm -rf content-editor
wget https://sunbirdartifact.blob.core.windows.net/artifacts/content-editor-artifacts.zip:release-5.2.0_RC1_fbbee60 -O content-editor.zip
wget https://sunbirdartifact.blob.core.windows.net/artifacts/content-editor.zip -O content-editor.zip
unzip content-editor.zip -d content-editor
unzip content-editor/content-editor.zip -d content-editor >> /dev/null
az storage blob upload-batch -d sunbird-contents-dev/content-editor --account-name $AccountName --account-key $AccountKey -s content-editor --overwrite true

# Collection editor
rm -rf collection-editor
wget https://sunbirdartifact.blob.core.windows.net/artifacts/collection-editor-artifacts.zip:release-3.6.0_RC1 -O collection-editor.zip
wget https://sunbirdartifact.blob.core.windows.net/artifacts/collection-editor.zip -O collection-editor.zip
unzip collection-editor.zip -d collection-editor
unzip collection-editor/collection-editor.zip -d collection-editor >> /dev/null
az storage blob upload-batch -d sunbird-contents-dev/collection-editor --account-name $AccountName --account-key $AccountKey -s collection-editor --overwrite true
Expand All @@ -35,7 +35,7 @@ az storage blob upload-batch -d sunbird-contents-dev/v3/preview --account-name $

#Generic Editor
rm -rf generic-editor
wget https://sunbirdartifact.blob.core.windows.net/artifacts/generic-editor-artifacts.zip:release-5.2.0_RC1_d77ea68 -O generic-editor.zip
wget https://sunbirdartifact.blob.core.windows.net/artifacts/generic-editor.zip -O generic-editor.zip
unzip generic-editor.zip -d generic-editor
unzip generic-editor/generic-editor.zip -d generic-editor >> /dev/null
az storage blob upload-batch -d sunbird-contents-dev/generic-editor --account-name $AccountName --account-key $AccountKey -s generic-editor --overwrite true
Expand Down