File tree Expand file tree Collapse file tree 6 files changed +20
-3
lines changed
Expand file tree Collapse file tree 6 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 44 version :
55 description : " Version number"
66 required : true
7+ NODE_AUTH_TOKEN :
8+ description : " Token for access to github package registry"
9+ required : true
710runs :
811 using : " composite"
912 steps :
1619 - name : Npm cli install
1720 working-directory : .
1821 env :
19- NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
22+ NODE_AUTH_TOKEN : ${{ inputs.NODE_AUTH_TOKEN }}
2023 run : npm ci
2124 shell : bash
2225 - name : Setup Ruby
Original file line number Diff line number Diff line change @@ -28,6 +28,9 @@ inputs:
2828 nodejs_version :
2929 description : " Node.js version, set by the CI/CD pipeline workflow"
3030 required : true
31+ NODE_AUTH_TOKEN :
32+ description : " Token for access to github package registry"
33+ required : true
3134
3235runs :
3336 using : composite
Original file line number Diff line number Diff line change 44 version :
55 description : " Version number"
66 required : true
7+
8+ NODE_AUTH_TOKEN :
9+ description : " Token for access to github package registry"
10+ required : true
711runs :
812 using : composite
913
1822 - name : Npm install
1923 working-directory : .
2024 env :
21- NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
25+ NODE_AUTH_TOKEN : ${{ inputs.NODE_AUTH_TOKEN }}
2226 run : npm ci
2327 shell : bash
2428
Original file line number Diff line number Diff line change 44 version :
55 description : " Version number"
66 required : true
7+ NODE_AUTH_TOKEN :
8+ description : " Token for access to github package registry"
9+ required : true
710runs :
811 using : " composite"
912 steps :
1720 - name : Npm install
1821 working-directory : .
1922 env :
20- NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
23+ NODE_AUTH_TOKEN : ${{ inputs.NODE_AUTH_TOKEN }}
2124 run : npm ci
2225 shell : bash
2326
Original file line number Diff line number Diff line change 8989 runId : " ${{ github.run_id }}"
9090 buildSandbox : ${{ inputs.build_sandbox }}
9191 releaseVersion : ${{ github.ref_name }}
92+ NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 5151 uses : ./.github/actions/build-docs
5252 with :
5353 version : " ${{ inputs.version }}"
54+ NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5455
5556 artefact-sdks :
5657 name : " Build SDKs"
6364 uses : ./.github/actions/build-sdk
6465 with :
6566 version : " ${{ inputs.version }}"
67+ NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
6668
6769 # Take out for now - might add again in the future
6870 # artefact-servers:
@@ -133,3 +135,4 @@ jobs:
133135 buildSandbox : true
134136 releaseVersion : ${{ github.head_ref || github.ref_name }}
135137 nodejs_version : ${{ inputs.nodejs_version }}
138+ NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments