sfcc-metadata-cli 1.0.0 → 1.0.1

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.
@@ -3,8 +3,6 @@ name: Check
3
3
  on:
4
4
  push:
5
5
  pull_request:
6
- release:
7
- types: [published]
8
6
 
9
7
  permissions:
10
8
  id-token: write
@@ -31,7 +29,7 @@ jobs:
31
29
 
32
30
  strategy:
33
31
  matrix:
34
- node-version: [18, 20, 22, 24]
32
+ node-version: [16, 18, 20, 22, 24]
35
33
 
36
34
  steps:
37
35
  - name: Checkout code
@@ -61,7 +59,7 @@ jobs:
61
59
  runs-on: ubuntu-latest
62
60
  container: node:24-slim
63
61
  needs: [check, test, audit]
64
- if: github.event_name == 'release'
62
+ if: startsWith(github.ref, 'refs/tags/')
65
63
 
66
64
  steps:
67
65
  - name: Checkout code
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "sfcc-metadata-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "CLI tool for creating SFCC B2C metadata migrations",
5
5
  "main": "index.js",
6
+ "repository": {
7
+ "url": "https://github.com/Touhami-viseo/sfcc-metadata-cli"
8
+ },
6
9
  "bin": {
7
10
  "sfcc-metadata": "./index.js"
8
11
  },