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

Skip uploading vsix to azure blob store #6204

Merged
merged 1 commit into from
Jun 8, 2021
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
23 changes: 0 additions & 23 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down