Skip to content

Commit c3a24c9

Browse files
authored
Remove uploading to blob storage (microsoft#18637)
1 parent 983a8df commit c3a24c9

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -337,25 +337,3 @@ jobs:
337337
with:
338338
node_version: ${{ env.NODE_VERSION }}
339339
artifact_name: ${{ needs.setup.outputs.vsix_artifact_name }}
340-
341-
upload:
342-
name: Upload VSIX to Azure Blob Storage
343-
if: github.repository == 'microsoft/vscode-python' && github.ref == 'refs/heads/main'
344-
needs: [setup, tests, smoke-tests, build-vsix]
345-
runs-on: ubuntu-latest
346-
env:
347-
BLOB_CONTAINER_NAME: extension-builds
348-
BLOB_NAME: ms-python-insiders.vsix
349-
steps:
350-
- name: Download VSIX
351-
uses: actions/download-artifact@v2
352-
with:
353-
name: ${{ needs.setup.outputs.vsix_artifact_name }}
354-
- name: Azure Login
355-
uses: azure/login@v1.4.3
356-
with:
357-
creds: ${{ secrets.AZURE_CREDENTIALS }}
358-
- name: Upload to Blob Storage
359-
run: az storage blob upload --file ${{ needs.setup.outputs.vsix_name }} --account-name pvsc --container-name ${{ env.BLOB_CONTAINER_NAME }} --name ${{ env.BLOB_NAME }} --auth-mode login
360-
- name: Get URL to uploaded VSIX
361-
run: az storage blob url --account-name pvsc --container-name ${{ env.BLOB_CONTAINER_NAME }} --name ${{ env.BLOB_NAME }} --auth-mode login

0 commit comments

Comments
 (0)