We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6d54ba commit 4375fbdCopy full SHA for 4375fbd
.github/workflows/deploy.yml
@@ -48,9 +48,11 @@ jobs:
48
- name: Set 'latest' NPM dist tag
49
if: steps.changesets.outputs.published == 'true' && github.ref_name == vars.LATEST_STABLE_VERSION
50
env:
51
- NPM_TOKEN: '' # Forces OIDC authentication
52
PUBLISHED_PACKAGES: ${{ steps.changesets.outputs.publishedPackages }}
53
run: |
+ # Forces OIDC authentication for raw run commands
54
+ echo "//registry.npmjs.org/:_authToken=" > ~/.npmrc
55
+
56
for pkg in $(echo "$PUBLISHED_PACKAGES" | jq -r '.[] | @base64'); do
57
_jq() {
58
echo ${pkg} | base64 --decode | jq -r ${1}
0 commit comments