Skip to content

Commit 5b37344

Browse files
Fix CI by removing Azure Artifacts Feeds (#2160)
Until it's figured out how we're supposed to use these on GitHub.
1 parent 4317c8b commit 5b37344

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

.github/workflows/ci-test.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ jobs:
3737
6.0.x
3838
7.0.x
3939
8.0.x
40-
source-url: https://pkgs.dev.azure.com/mscodehub/PowerShellCore/_packaging/PowerShellCore_PublicPackages/nuget/v3/index.json
41-
env:
42-
NUGET_AUTH_TOKEN: ${{ secrets.AZURE_NUGET_TOKEN }}
40+
41+
- name: Remove Azure Artifact Feed configurations
42+
shell: pwsh
43+
run: Remove-Item ./NuGet.Config
4344

4445
- name: Install PSResources
4546
shell: pwsh

.github/workflows/codeql-analysis.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ jobs:
3333
with:
3434
cache: true
3535
cache-dependency-path: '**/packages.lock.json'
36-
source-url: https://pkgs.dev.azure.com/mscodehub/PowerShellCore/_packaging/PowerShellCore_PublicPackages/nuget/v3/index.json
37-
env:
38-
NUGET_AUTH_TOKEN: ${{ secrets.AZURE_NUGET_TOKEN }}
36+
37+
- name: Remove Azure Artifact Feed configurations
38+
shell: pwsh
39+
run: Remove-Item ./NuGet.Config
3940

4041
- name: Initialize CodeQL
4142
uses: github/codeql-action/init@v3

.github/workflows/emacs-test.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ jobs:
2727
with:
2828
cache: true
2929
cache-dependency-path: '**/packages.lock.json'
30-
source-url: https://pkgs.dev.azure.com/mscodehub/PowerShellCore/_packaging/PowerShellCore_PublicPackages/nuget/v3/index.json
31-
env:
32-
NUGET_AUTH_TOKEN: ${{ secrets.AZURE_NUGET_TOKEN }}
30+
31+
- name: Remove Azure Artifact Feed configurations
32+
shell: pwsh
33+
run: Remove-Item ./NuGet.Config
3334

3435
- name: Install PSResources
3536
shell: pwsh

.github/workflows/vim-test.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ jobs:
2727
with:
2828
cache: true
2929
cache-dependency-path: '**/packages.lock.json'
30-
source-url: https://pkgs.dev.azure.com/mscodehub/PowerShellCore/_packaging/PowerShellCore_PublicPackages/nuget/v3/index.json
31-
env:
32-
NUGET_AUTH_TOKEN: ${{ secrets.AZURE_NUGET_TOKEN }}
30+
31+
- name: Remove Azure Artifact Feed configurations
32+
shell: pwsh
33+
run: Remove-Item ./NuGet.Config
3334

3435
- name: Install PSResources
3536
shell: pwsh

0 commit comments

Comments
 (0)