@nubisco/openbridge 0.29.0 → 0.30.0

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.
Files changed (2) hide show
  1. package/README.md +5 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -260,8 +260,11 @@ Releases are automated and should not be run by hand.
260
260
 
261
261
  1. Merging to `master` runs semantic-release, which bumps the version, writes the
262
262
  CHANGELOG entry, commits and pushes a `vX.Y.Z` tag.
263
- 2. That tag triggers [`npm-publish.yml`](.github/workflows/npm-publish.yml), which
264
- builds, packs each package with `pnpm pack` and publishes the tarballs to npm.
263
+ 2. Publishing the resulting GitHub Release triggers
264
+ [`npm-publish.yml`](.github/workflows/npm-publish.yml), which builds, packs each
265
+ package with `pnpm pack` and publishes the tarballs to npm. It keys off the
266
+ release rather than the tag because the tag points at a `[skip ci]` commit,
267
+ which GitHub uses to suppress push-triggered workflows.
265
268
 
266
269
  Authentication uses **npm trusted publishing** (OIDC), so there is no npm token
267
270
  stored in the repository. Each package has this workflow registered as a trusted
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nubisco/openbridge",
3
- "version": "0.29.0",
3
+ "version": "0.30.0",
4
4
  "description": "Local-first home automation bridge for developers. Plugin-based, TypeScript-first, Homebridge-compatible.",
5
5
  "author": "José Silva <jose@nubisco.io>",
6
6
  "license": "MIT",
@@ -53,10 +53,10 @@
53
53
  "hap-nodejs": "^0.14.3",
54
54
  "qrcode-terminal": "^0.12.0",
55
55
  "systeminformation": "^5.31.5",
56
- "@nubisco/openbridge-compatibility-homebridge": "0.29.0",
57
- "@nubisco/openbridge-logger": "0.29.0",
58
- "@nubisco/openbridge-config": "0.29.0",
59
- "@nubisco/openbridge-core": "0.29.0"
56
+ "@nubisco/openbridge-compatibility-homebridge": "0.30.0",
57
+ "@nubisco/openbridge-core": "0.30.0",
58
+ "@nubisco/openbridge-config": "0.30.0",
59
+ "@nubisco/openbridge-logger": "0.30.0"
60
60
  },
61
61
  "optionalDependencies": {
62
62
  "node-pty": "^1.1.0"