Skip to content

Commit 2daaad7

Browse files
committed
Merge branch 'main' into users/jukullam/template-updates
2 parents 917588e + d9fe0d1 commit 2daaad7

File tree

7 files changed

+18
-20
lines changed

7 files changed

+18
-20
lines changed

docs/artifacts/how-to/delete-and-recover-packages.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In this article, you'll learn how to:
2424
> * Recover recently deleted packages from the Recycle Bin.
2525
2626
> [!NOTE]
27-
> To delete/recover packages or set up retention policies, you must be a feed **Owner**.
27+
> You must be a feed **Owner** or **Administrator** to delete packages or set up retention policies.
2828
2929
## Delete packages
3030

@@ -84,7 +84,7 @@ Two options are available to delete a NuGet package from your feed, [Unlist](#qa
8484
```
8585

8686
> [!NOTE]
87-
> Azure DevOps and Visual Studio Team Foundation Server interpret the `nuget.exe delete` command as an unlist operation. To delete a package, you must use the REST API or the web interface.
87+
> Azure DevOps and Visual Studio Team Foundation Server interpret the `nuget.exe delete` command as an unlist operation. To delete a package, you must use the [REST API](/rest/api/azure/devops/artifactspackagetypes/nuget/delete-package-version) or the web interface.
8888

8989
#### [npm](#tab/npm/)
9090

docs/artifacts/nuget/publish.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ description: How to connect to your feed and publish NuGet packages using the co
44
ms.assetid: C7D75946-1F00-4BD7-87C8-225BBAE9982B
55
ms.service: azure-devops-artifacts
66
ms.topic: conceptual
7-
ms.date: 06/23/2022
7+
ms.date: 06/30/2023
88
monikerRange: '<= azure-devops'
99
---
1010

1111
# Publish and restore NuGet packages from the command line (NuGet.exe)
1212

1313
[!INCLUDE [version-lt-eq-azure-devops](../../includes/version-lt-eq-azure-devops.md)]
1414

15-
With Azure Artifacts, you can publish your NuGet packages to public or private feeds and share them with others based on your feed's visibility settings. This article will guide you through connecting to Azure Artifacts and publishing your NuGet packages.
15+
With Azure Artifacts, you can publish your NuGet packages to public or private feeds and share them with others based on your feed's visibility settings. This article will guide you through connecting to Azure Artifacts and publishing and restoring your NuGet packages.
1616

1717
## Prerequisites
1818

19-
- An Azure DevOps organization. [Create an organization](../../organizations/accounts/create-organization.md), if you don't have one already.
19+
- An Azure DevOps organization and a project. Create an [organization](../../organizations/accounts/create-organization.md) or a [project](../../organizations/projects/create-project.md#create-a-project) if you haven't already.
2020

2121
- An Azure Artifacts feed. [Create a new feed](../get-started-nuget.md#create-a-feed) if you don't have one already.
2222

@@ -30,14 +30,14 @@ With Azure Artifacts, you can publish your NuGet packages to public or private f
3030

3131
## Publish packages
3232

33-
To publish a NuGet package to your feed, run the following command in an elevated command prompt. Replace the placeholders with the appropriate information:
33+
Run the following command to publish your packages to your feed. Replace the placeholders with the appropriate information:
3434

3535
```Command
3636
nuget push <PACKAGE_PATH> -src https://pkgs.dev.azure.com/<ORGANIZATION_NAME>/<PROJECT_NAME>/_packaging/<FEED_NAME>/nuget/v3/index.json -ApiKey <ANY_STRING>
3737
```
3838

3939
> [!NOTE]
40-
> The `ApiKey` is only used as a placeholder.
40+
> The `ApiKey` is required, but you can use any arbitrary value when pushing to Azure Artifacts feeds.
4141
4242
- **Example**:
4343

@@ -49,16 +49,16 @@ nuget push <PACKAGE_PATH> -src https://pkgs.dev.azure.com/<ORGANIZATION_NAME>/<P
4949

5050
1. Create a [personal access token](../../organizations/accounts/use-personal-access-tokens-to-authenticate.md) (PAT) with **packaging read and write** scope.
5151

52-
1. Add your package source to your nuget.config file. This will add your PAT to your nuget.config file. Make sure to store this file in a safe place, and do not check this file into source control.
52+
1. Add your package source to your nuget.config file. This will add your PAT to your nuget.config file. Store this file in a safe location, and make sure that you don't check it into source control. See [NuGet sources](/nuget/reference/cli-reference/cli-ref-sources) for more details.
5353
5454
```Command
55-
nuget sources Add -Name <PACKAGE_SOURCE> -Source https://pkgs.dev.azure.com/<ORGANIZATION_NAME>/<PROJECT_NAME>/_packaging/<FEED_NAME>/nuget/v3/index.json -UserName <USER_NAME> -Password <PERSONAL_ACCESS_TOKEN> -config <PATH_TO_NUGET_CONFIG_FILE>
55+
nuget sources Add -Name <SOURCE_NAME> -Source https://pkgs.dev.azure.com/<ORGANIZATION_NAME>/<PROJECT_NAME>/_packaging/<FEED_NAME>/nuget/v3/index.json -UserName <USER_NAME> -Password <PERSONAL_ACCESS_TOKEN> -config <PATH_TO_NUGET_CONFIG_FILE>
5656
```
5757
58-
1. Publish your package:
58+
1. Publish your package. See [NuGet push](/nuget/reference/cli-reference/cli-ref-push) for more details.
5959
6060
```Command
61-
nuget push <PACKAGE_PATH> -src <PACKAGE_SOURCE> -ApiKey <ANY_STRING>
61+
nuget push <PACKAGE_PATH> -src <SOURCE_NAME> -ApiKey <ANY_STRING>
6262
```
6363
6464
- **Example**:
@@ -70,7 +70,7 @@ nuget push <PACKAGE_PATH> -src https://pkgs.dev.azure.com/<ORGANIZATION_NAME>/<P
7070
7171
## Restore packages
7272
73-
To restore your packages, run the following command in an elevated command prompt:
73+
Run the following command to restore your packages:
7474
7575
```Command
7676
nuget.exe restore

docs/artifacts/quickstarts/python-packages.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ When you connect to Azure DevOps for the first time, you'll be prompted for cred
118118

119119
## Related articles
120120

121-
- [Publish Python packages with Azure Pipelines](../../pipelines/artifacts/pypi.md).
121+
- [Use feed views to share packages](../feeds/views.md)
122122

123-
- [Publish and consume Python packages from the command line](python-cli.md)
123+
- [Publish Python packages with Azure Pipelines](../../pipelines/artifacts/pypi.md).
124124

125125
- [Build Python apps](../../pipelines/ecosystems/python.md).
126126

docs/organizations/security/allow-list-ip-url.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ If you use Microsoft-hosted agent to run your jobs and you need the information
293293
For more information about hosted Windows, Linux and macOS agents, see [Microsoft-hosted agent IP ranges](../../pipelines/agents/hosted.md#agent-ip-ranges).
294294

295295
### Azure Pipelines Self-hosted agents
296-
If you're running a firewall and your code is in Azure Repos, see [Self-hosted Linux agents FAQs](../../pipelines/agents/windows-agent.md#im-running-a-firewall-and-my-code-is-in-azure-repos-what-urls-does-the-agent-need-to-communicate-with), [Self-hosted macOS agents FAQs](../../pipelines/agents/osx-agent.md#im-running-a-firewall-and-my-code-is-in-azure-repos-what-urls-does-the-agent-need-to-communicate-with) or [Self-hosted Windows agents FAQs](../../pipelines/agents/windows-agent.md#im-running-a-firewall-and-my-code-is-in-azure-repos-what-urls-does-the-agent-need-to-communicate-with). This article has information about which domain URLs and IP addresses your private agent needs to communicate with.
296+
If you're running a firewall and your code is in Azure Repos, see [Self-hosted Linux agents FAQs](../../pipelines/agents/linux-agent.md#im-running-a-firewall-and-my-code-is-in-azure-repos-what-urls-does-the-agent-need-to-communicate-with), [Self-hosted macOS agents FAQs](../../pipelines/agents/osx-agent.md#im-running-a-firewall-and-my-code-is-in-azure-repos-what-urls-does-the-agent-need-to-communicate-with) or [Self-hosted Windows agents FAQs](../../pipelines/agents/windows-agent.md#im-running-a-firewall-and-my-code-is-in-azure-repos-what-urls-does-the-agent-need-to-communicate-with). This article has information about which domain URLs and IP addresses your private agent needs to communicate with.
297297

298298

299299
## Azure DevOps import service

docs/pipelines/ecosystems/customize-python.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ To create your first pipeline with Python, see the [Python quickstart](python.md
1515

1616
### Use a specific Python version
1717

18-
To use a specific version of Python in your pipeline, add the [Use Python Version task](/azure/devops/pipelines/tasks/reference/use-python-version-v0) to *azure-pipelines.yml*. This snippet sets the pipeline to use Python 3.6:
18+
To use a specific version of Python in your pipeline, add the [Use Python Version task](/azure/devops/pipelines/tasks/reference/use-python-version-v0) to *azure-pipelines.yml*. This snippet sets the pipeline to use Python 3.11:
1919

2020
```yaml
2121
steps:
2222
- task: UsePythonVersion@0
2323
inputs:
24-
versionSpec: '3.6'
24+
versionSpec: '3.11'
2525
```
2626
2727
### Use multiple Python versions

docs/pipelines/ecosystems/python.md

-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,6 @@ pool:
8181
vmImage: ubuntu-latest
8282
strategy:
8383
matrix:
84-
Python37:
85-
python.version: '3.7'
8684
Python38:
8785
python.version: '3.8'
8886
Python39:

docs/pipelines/process/conditions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ jobs:
320320
- job: B
321321
steps:
322322
- script: echo I did a thing
323-
condition: ${{ if eq(parameters.doThing, true) }}
323+
condition: ${{ eq(parameters.doThing, true) }}
324324
```
325325
326326
```yaml

0 commit comments

Comments
 (0)