@manjit-finn/hai 1.0.0 → 1.0.10
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.
|
@@ -20,8 +20,14 @@ jobs:
|
|
|
20
20
|
node-version: '20'
|
|
21
21
|
registry-url: 'https://registry.npmjs.org'
|
|
22
22
|
|
|
23
|
+
- name: Update npm for OIDC support
|
|
24
|
+
run: npm install -g npm@^11.5.1
|
|
25
|
+
|
|
23
26
|
- run: npm install
|
|
24
27
|
|
|
25
|
-
- run: npm publish --access
|
|
26
|
-
|
|
27
|
-
|
|
28
|
+
- run: npm publish --access public --loglevel verbose
|
|
29
|
+
|
|
30
|
+
- name: Add dist-tag latest
|
|
31
|
+
run: |
|
|
32
|
+
VERSION=$(node -p "require('./package.json').version")
|
|
33
|
+
npm dist-tag add @manjit-finn/hai@$VERSION latest
|