Skip to content

Commit

Permalink
Merge pull request #2840 from reubenmiller/ci-workaround-ms-apt-repo-bug
Browse files Browse the repository at this point in the history
ci: remove microsoft debian repo due to invalid repo
  • Loading branch information
reubenmiller authored Apr 24, 2024
2 parents ac6323a + 6c5f45c commit 0ac3e7e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ jobs:

steps:
- if: ${{ contains(matrix.host_os, 'ubuntu') }}
run: sudo apt-get update -y
run: |
# WORKAROUND: Remove microsoft debian repo due to https://github.com/microsoft/linux-package-repositories/issues/130. Remove line below after it is resolved
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list
sudo apt-get update -y
- name: Checkout
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 0ac3e7e

Please sign in to comment.