@5minds/node-red-contrib-processcube 1.8.0-develop-56411a-m70qa4ns → 1.8.0-develop-37b35b-m734zl61
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.
@@ -7,14 +7,13 @@ on:
|
|
7
7
|
- '*/*'
|
8
8
|
|
9
9
|
env:
|
10
|
-
CI_TOOLS_VERSION: '^
|
10
|
+
CI_TOOLS_VERSION: '^5.0.0'
|
11
11
|
# NOTE: Um den Releasezyklus von Alpha nach Beta zu ändern, einfach die nachfolgend deklarierten Env Variablen switchen.
|
12
12
|
CI_TOOLS_ALPHA_BRANCH: next
|
13
13
|
CI_TOOLS_ALPHA_NPM_TAG: next
|
14
|
-
CI_TOOLS_STABLE_BRANCH: main
|
15
14
|
# CI_TOOLS_BETA_BRANCH: next
|
16
15
|
# CI_TOOLS_BETA_NPM_TAG: next
|
17
|
-
|
16
|
+
BOX_RELEASE_TAG: 2025-1
|
18
17
|
|
19
18
|
jobs:
|
20
19
|
build_and_publish:
|
@@ -28,10 +27,10 @@ jobs:
|
|
28
27
|
fetch-depth: 0
|
29
28
|
token: ${{ secrets.GH_TOKEN }}
|
30
29
|
|
31
|
-
- name: Use Node.js
|
30
|
+
- name: Use Node.js 22
|
32
31
|
uses: actions/setup-node@v4
|
33
32
|
with:
|
34
|
-
node-version: '
|
33
|
+
node-version: '22'
|
35
34
|
registry-url: 'https://registry.npmjs.org'
|
36
35
|
|
37
36
|
- name: Install CI Tools
|
@@ -63,10 +62,11 @@ jobs:
|
|
63
62
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
64
63
|
run: ci_tools publish-npm-package --create-tag-from-branch-name
|
65
64
|
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
65
|
+
- name: Add Box-Release Tag
|
66
|
+
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/next'
|
67
|
+
env:
|
68
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
69
|
+
run: |
|
70
|
+
VERSION="$(ci_tools get-version)"
|
71
|
+
PACKAGE_NAME="$(npm pkg get name | tr -d \")"
|
72
|
+
npm dist-tag add $PACKAGE_NAME@$VERSION ${{ env.BOX_RELEASE_TAG }}
|