spfx project azuredevops pipeline add
Adds a Azure DevOps Pipeline for a SharePoint Framework project
Usage
m365 spfx project azuredevops pipeline add [options]
Options
-n, --name [name]
Name of the pipeline run that will be created. If none is specified a default name generated by Azure DevOps will be used
-b, --branchName [branchName]
Specify the branch name which should trigger the workflow on push. If none is specified a default will be used which is 'main'
-l, --loginMethod [loginMethod]
Specify the login method used for the login action. Possible options are:
user
,application
. Defaultapplication
-s, --scope [scope]
Scope of the app catalog:
tenant
,sitecollection
. Default istenant
-u, --siteUrl [siteUrl]
The URL of the site collection where the solution package will be added. Required if scope is set to
sitecollection
--skipFeatureDeployment
When specified the app will be added to all sites. When deployed to the site app catalog it will be added to all sub-sites of that site.
-h, --help [help]
Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are
options
,examples
,remarks
,response
,full
. Default isoptions
.--query [query]
JMESPath query string. See http://jmespath.org/ for more information and examples.
-o, --output [output]
Output type.
json
,text
,csv
,md
,none
. Defaultjson
.--verbose
Runs command with verbose logging.
--debug
Runs command with debug logging.
Remarks
The spfx project azuredevops pipeline add
will create a workflow .yml file in the .azuredevops/pipelines
directory in your project. If such directory does not exist the command will automatically create it.
The command will not create the Azure DevOps pipeline. You will need to manually create it in Azure DevOps. The command will only create the workflow file which you can then push to your repo and create a new yaml pipline based on it.
For the application
login method the command does not register an Entra application nor does it create the required certificate. In order to proceed, obtain (create) a self-signed certificate and register a new Entra application with certificate authentication. After that you will need to fill the following variables, or what is more preferable, create a dedicated variable group to store those properties:
CertificateBase64Encoded
- base 64 encoded certificate. Use eitherCertificateBase64Encoded
orCertificateSecureFileId
but not bothCertificateSecureFileId
- id of a certificate file in the secure files section of the DevOps library..pfx
file. Use eitherCertificateBase64Encoded
orCertificateSecureFileId
but not bothCertificatePassword
- certificate password. This applies only if the certificate is encoded which is the recommended approachEntraAppId
- client id of the registered Entra application
This use case is perfect in a production context as it does not create any dependencies on an account
For the user
login method you will need to fill the following variables, or what is more preferable, create a dedicated variable group to store those properties:
UserName
- user emailPassword
- password
This method is perfect to test your workflow, in a dev context, for personal usage. It will not work for accounts with MFA.
Run this command in the SPFx solution folder.
Examples
Adds an Azure DevOps Pipeline for a SharePoint Framework project triggered on push to main
m365 spfx project azuredevops pipeline add
Adds an Azure DevOps Pipeline for a SharePoint Framework project with user
login method triggered on push to main
m365 spfx project azuredevops pipeline add --loginMethod "user"
Adds an Azure DevOps Pipeline for a SharePoint Framework project with deployment to a site collection app catalog
m365 spfx project azuredevops pipeline add --scope "sitecollection" --siteUrl "https://some.sharepoint.com/sites/someSite"
Response
The command won't return a response on success.