We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef4dd6a commit 79fe96eCopy full SHA for 79fe96e
2 files changed
.travis.yml
@@ -137,3 +137,8 @@ script:
137
vsce package;
138
azure storage blob upload python*.vsix $AZURE_STORAGE_CONTAINER ms-python-insiders.vsix --account-name $AZURE_STORAGE_ACCOUNT --account-key $AZURE_STORAGE_ACCESS_KEY --quiet;
139
fi
140
+ - if [[ $AZURE_STORAGE_ACCOUNT && "$TRAVIS_BRANCH" == release* && "$TRAVIS_PULL_REQUEST" == "false" ]]; then
141
+ npm run clean;
142
+ vsce package;
143
+ azure storage blob upload python*.vsix $AZURE_STORAGE_CONTAINER ms-python-$TRAVIS_BRANCH.vsix --account-name $AZURE_STORAGE_ACCOUNT --account-key $AZURE_STORAGE_ACCESS_KEY --quiet;
144
+ fi
news/3 Code Health/2874.md
@@ -0,0 +1 @@
1
+Add ability to publish extension builds from `release` branches into the blob store.
0 commit comments