You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+60-12Lines changed: 60 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@ Create a workflow `.yml` file in your `.github/workflows` directory. An [example
19
19
-`CERTIFICATE_PASSWORD` : Password for the certificate
20
20
-`APP_ID` : App ID of the Azure AD application to use for certificate authentication. If not specified, use the app specified in the 'CLIMICROSOFT365_AADAPPID' environment variable. If the environment variable is not defined, use the multitenant PnP Management Shell app
21
21
-`TENANT` : ID of the tenant from which accounts should be able to authenticate. Use `common` or `organization` if the app is multitenant. If not specified, use the tenant specified in the `CLIMICROSOFT365_TENANT` environment variable. If the environment variable is not defined, it will use `common` as the tenant identifier
22
+
-`CLI_VERSION` : Accepts `latest`, `next` or a specific version tag. Otherwise, installs the `latest` version when omitted
22
23
23
24
All inputs are optional. But depending of the authentication type chosen, following pair of inputs will be necessary:
24
25
@@ -41,8 +42,8 @@ Since this action requires sensitive information such as user name, password and
41
42
- 2 new secrets if using a custom Azure AD identity:
42
43
-`APP_ID` - store App ID of the Azure AD application to use for authentication
43
44
-`TENANT` - store the ID of the tenant from which accounts should be able to authenticate
44
-
45
-
These secrets are encrypted and can only be used by GitHub actions.
45
+
46
+
These secrets are encrypted and can only be used by GitHub actions.
46
47
47
48
### Example workflow - CLI for Microsoft 365 Login (user name / password authentication)
Copy file name to clipboardExpand all lines: action.yml
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,9 @@ inputs:
19
19
TENANT:
20
20
description: "ID of the tenant from which accounts should be able to authenticate. Use common or organization if the app is multitenant. If not specified, use the tenant specified in the 'CLIMICROSOFT365_TENANT' environment variable. If the environment variable is not defined, use 'common' as the tenant identifier"
21
21
required: false
22
+
CLI_VERSION:
23
+
description: "When specified, installs the requested version or tag of the CLI"
0 commit comments