diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 1d04b4f85a5..425bf7d93d9 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -1001,29 +1001,6 @@ jobs: path: .nyc_output retention-days: 1 - upload: - name: Upload VSIX to Azure Blob Storage - runs-on: ubuntu-latest - # This should happen in the release and insiders branch - if: github.repository == 'microsoft/vscode-jupyter' && (github.event_name == 'push' || github.event_name == 'schedule') && (github.ref == 'refs/heads/main' || contains(github.ref, 'refs/heads/release')) - needs: [build-vsix, pick_environment, lint, ts_tests, vscodeTests, smoke-tests] - env: - BLOB_CONTAINER_NAME: extension-builds-jupyter - - steps: - - name: Download VSIX - uses: actions/download-artifact@v2 - with: - name: ${{ needs.pick_environment.outputs.vsix_name }} - - - name: Azure Login - uses: azure/login@v1.3.0 - with: - creds: ${{ secrets.AZURE_CREDENTIALS }} - - - name: Upload to Blob Storage - run: az storage blob upload --file ${{ needs.pick_environment.outputs.vsix_name }} --account-name pvsc --container-name ${{ env.BLOB_CONTAINER_NAME }} --name ${{ needs.pick_environment.outputs.vsix_name }} - coverage: name: Coverage reports upload runs-on: ubuntu-latest