File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 publish :
1313 name : publish
1414 runs-on : ubuntu-latest
15- permissions :
16- contents : read
17- id-token : write
1815
1916 steps :
2017 - uses : actions/checkout@v6
3128 - name : Publish to NPM
3229 run : |
3330 bash ./bin/publish-npm
31+ env :
32+ NPM_TOKEN : ${{ secrets.HUBSPOT_NPM_TOKEN || secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1717 - name : Check release environment
1818 run : |
1919 bash ./bin/check-release-environment
20+ env :
21+ NPM_TOKEN : ${{ secrets.HUBSPOT_NPM_TOKEN || secrets.NPM_TOKEN }}
2022
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ dist-deno
99/* .tgz
1010.idea /
1111.eslintcache
12- oidc
12+
Original file line number Diff line number Diff line change 11configured_endpoints : 959
22openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/hubspot%2Fhubspot-sdk-27f6d2f8adbca1ec11995d8f923efadd9bfd5bc7cd569690aaf0ff634949feaa.yml
33openapi_spec_hash : d0e76c7f7ecb1e8f701d4ced83be404f
4- config_hash : 9a5e751d38a6c4ccba657d505406981e
4+ config_hash : 24e2412e72857efccdee02908ed1e3a4
Original file line number Diff line number Diff line change 22
33errors=()
44
5+ if [ -z " ${NPM_TOKEN} " ]; then
6+ errors+=(" The NPM_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets" )
7+ fi
8+
59lenErrors=${# errors[@]}
610
711if [[ lenErrors -gt 0 ]]; then
Original file line number Diff line number Diff line change 22
33set -eux
44
5- if [[ ${NPM_TOKEN:- } ]]; then
6- npm config set ' //registry.npmjs.org/:_authToken' " $NPM_TOKEN "
7- elif [[ ! ${ACTIONS_ID_TOKEN_REQUEST_TOKEN:- } ]]; then
8- echo " ERROR: NPM_TOKEN must be set if not running in a Github Action with id-token permission"
9- exit 1
10- fi
5+ npm config set ' //registry.npmjs.org/:_authToken' " $NPM_TOKEN "
116
127yarn build
138cd dist
6257 TAG=" latest"
6358fi
6459
65- # Install OIDC compatible npm version
66- npm install --prefix ../oidc/ npm@11.6.2
67-
6860# Publish with the appropriate tag
69- export npm_config_registry=' https://registry.npmjs.org'
70- ../oidc/node_modules/.bin/npm publish --tag " $TAG "
61+ yarn publish --tag " $TAG "
You can’t perform that action at this time.
0 commit comments