sf-plugin-permission-sets 0.0.0-dev.51 → 0.0.0-dev.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -402,8 +402,8 @@ jobs:
|
|
|
402
402
|
check:
|
|
403
403
|
runs-on: ubuntu-latest
|
|
404
404
|
steps:
|
|
405
|
-
- uses: actions/checkout@
|
|
406
|
-
- uses: actions/setup-node@
|
|
405
|
+
- uses: actions/checkout@v7
|
|
406
|
+
- uses: actions/setup-node@v7
|
|
407
407
|
with:
|
|
408
408
|
node-version: 20
|
|
409
409
|
- name: Install Salesforce CLI
|
|
@@ -427,18 +427,16 @@ jobs:
|
|
|
427
427
|
apply:
|
|
428
428
|
runs-on: ubuntu-latest
|
|
429
429
|
steps:
|
|
430
|
-
- uses: actions/checkout@
|
|
431
|
-
- uses: actions/setup-node@
|
|
430
|
+
- uses: actions/checkout@v7
|
|
431
|
+
- uses: actions/setup-node@v7
|
|
432
432
|
with:
|
|
433
433
|
node-version: 20
|
|
434
434
|
- name: Install Salesforce CLI
|
|
435
435
|
run: npm install --global @salesforce/cli
|
|
436
436
|
- name: Install the plugin
|
|
437
437
|
run: sf plugins install sf-plugin-permission-sets
|
|
438
|
-
- name: Write the auth URL
|
|
439
|
-
run: echo '${{ secrets.SF_AUTH_URL }}' > auth.txt
|
|
440
438
|
- name: Log in to the org
|
|
441
|
-
run: sf org login sfdx-url --sfdx-url-
|
|
439
|
+
run: echo '${{ secrets.SF_AUTH_URL }}' | sf org login sfdx-url --sfdx-url-stdin --alias prod
|
|
442
440
|
# --no-prompt so a deletion never blocks on a confirmation in CI.
|
|
443
441
|
- name: Apply the assignments
|
|
444
442
|
run: sf ps apply --file "permissions/*.yml" --target-org prod --mode sync --no-prompt
|
package/package.json
CHANGED