Skip to content

Commit deb7925

Browse files
Release 3.1.4 (#1345)
1 parent 5330f58 commit deb7925

4 files changed

Lines changed: 12 additions & 6 deletions

File tree

.github/workflows/test-and-release.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
runs-on: ubuntu-latest
9090
strategy:
9191
matrix:
92-
node-version: [22.x]
92+
node-version: [24.x]
9393

9494
steps:
9595
- name: Checkout code
@@ -117,8 +117,14 @@ jobs:
117117
- name: Install dependencies
118118
run: npm ci
119119

120+
# This is unnecessary, since npm publish will run prepublishOnly, which will run build
121+
# - name: Create a clean build
122+
# run: npm run build
123+
120124
- name: Publish package to npm
121-
run: npm publish # npm publish will run prepublishOnly, which will run build
125+
run: |
126+
npm install -g npm@latest
127+
npm publish
122128
123129
- name: Create Github Release
124130
uses: softprops/action-gh-release@v3

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## __WORK IN PROGRESS__
66
(at the beginning of a new line)
77
-->
8-
## 3.1.3 (2026-05-04)
8+
## 3.1.4 (2026-05-04)
99

1010
- (@UncleSamSwiss) Continue file creation despite translation errors due to rate limiting
1111

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iobroker/create-adapter",
3-
"version": "3.1.3",
3+
"version": "3.1.4",
44
"description": "Command line utility to create customized ioBroker adapters",
55
"keywords": [],
66
"main": "build/index.js",

0 commit comments

Comments
 (0)