ins-queue-actions 1.2.97 → 1.2.106

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.
@@ -42,13 +42,19 @@ jobs:
42
42
  - uses: actions/setup-node@v4
43
43
  with:
44
44
  node-version: 20
45
- registry-url: https://registry.npmjs.org/
45
+ # No registry-url to allow Trusted Publishing OIDC authentication
46
+ # setup-node automatically uses NODE_AUTH_TOKEN if registry-url is set
47
+
48
+ - name: Upgrade npm for Trusted Publishing support
49
+ run: npm install -g npm@latest
50
+ # Trusted Publishing requires npm 11.5.1+
51
+
52
+ - name: Configure npm registry (for Trusted Publishing)
53
+ run: npm config set registry https://registry.npmjs.org/
46
54
 
47
55
  - name: Fetch the latest code
48
56
  run: git pull origin main # Ensures that the latest version is fetched from the main branch.
49
57
 
50
58
  - name: Publish to npm
51
59
  run: npm publish --access public
52
- env:
53
- NODE_AUTH_TOKEN: ${{ secrets.npm_token }}
54
-
60
+ # Trusted Publishing (OIDC) is used automatically - no token needed
package/package.json CHANGED
@@ -1,6 +1,10 @@
1
1
  {
2
2
  "name": "ins-queue-actions",
3
- "version": "1.2.97",
3
+ "version": "1.2.106",
4
4
  "main": "index.js",
5
- "engineStrict": true
5
+ "engineStrict": true,
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/InstaServiceTech/ins-queue-actions.git"
9
+ }
6
10
  }