Merged
Show file tree
Hide file tree
Changes from all commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
version: 2
registries:
npm-azure:
npm:
type: npm-registry
url: https://pkgs.dev.azure.com/mscodehub/PowerShellCore/_packaging/PowerShellCore_PublicPackages/npm/registry/
username: powershell
password: ${{ secrets.AZURE_NPM_PASSWORD }}
url: https://registry.npmjs.org/
updates:
- package-ecosystem: npm
directory: "/"
registries:
- npm-azure
- npm
labels: [ ]
schedule:
interval: weekly
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -37,16 +37,9 @@ jobs:
uses: actions/setup-dotnet@v4
with:
cache: true
cache-dependency-path: PowerShellEditorServices/**/packages.lock.json
cache-dependency-path: PowerShellEditorServices/**/*.csproj
global-json-file: PowerShellEditorServices/global.json

- name: Remove Azure Artifact Feed configurations
shell: pwsh
run: |
Remove-Item -Force .npmrc
Remove-Item test/mocks/BinaryModule/NuGet.Config
Remove-Item ../PowerShellEditorServices/NuGet.Config
working-directory: vscode-powershell
config-file: PowerShellEditorServices/nuget.config

- name: Install PSResources
shell: pwsh
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
; We use Dependabot to update our packages, so we want to add without a prefix
save-exact=true
; We download from a private feed during the release process
registry=https://pkgs.dev.azure.com/mscodehub/PowerShellCore/_packaging/PowerShellCore_PublicPackages/npm/registry/
registry=https://pkgs.dev.azure.com/powershell/PowerShell/_packaging/powershell/npm/registry/
always-auth=true
Loading