Skip to content

Commit 1673843

Browse files
committed
Merge branch 'master' into feat/add-embeded-functions-type-inference
2 parents 5e2f3c0 + 35ce587 commit 1673843

File tree

16 files changed

+444
-128
lines changed

16 files changed

+444
-128
lines changed

.github/workflows/publish.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ jobs:
7373
cache: 'npm'
7474
registry-url: 'https://registry.npmjs.org'
7575

76+
# Ensure npm 11.5.1 or later is installed for trusted publishing support
77+
- name: Update npm
78+
run: npm install -g npm@latest
7679
- name: Install dependencies
7780
run: npm ci --legacy-peer-deps
7881
- name: Configure git
@@ -98,6 +101,7 @@ jobs:
98101
- name: Release
99102
env:
100103
NPM_CONFIG_PROVENANCE: true
104+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
101105
RELEASE_GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} # used for tags
102106
run: |
103107
npm run release-stable -- --versionSpecifier "${{ github.event.inputs.version_specifier }}"
@@ -249,6 +253,9 @@ jobs:
249253
cache: 'npm'
250254
registry-url: 'https://registry.npmjs.org'
251255

256+
# Ensure npm 11.5.1 or later is installed for trusted publishing support
257+
- name: Update npm
258+
run: npm install -g npm@latest
252259
- name: Install dependencies
253260
run: npm ci --legacy-peer-deps
254261
- name: Configure git
@@ -263,6 +270,7 @@ jobs:
263270
npm run release-canary
264271
env:
265272
NPM_CONFIG_PROVENANCE: true
273+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
266274
RELEASE_GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} # used for tags
267275
notify-stable-failure:
268276
name: Notify Slack for Stable failure

0 commit comments

Comments
 (0)