homebridge-securitysystem 9.1.1 → 9.1.2
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.
|
@@ -28,6 +28,7 @@ jobs:
|
|
|
28
28
|
uses: actions/setup-node@v6
|
|
29
29
|
|
|
30
30
|
with:
|
|
31
|
+
node-version: ${{ vars.NPM_VERSION }}
|
|
31
32
|
cache: "npm"
|
|
32
33
|
registry-url: https://registry.npmjs.org/
|
|
33
34
|
|
|
@@ -38,6 +39,6 @@ jobs:
|
|
|
38
39
|
|
|
39
40
|
- name: Attest build provenance
|
|
40
41
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
|
|
41
|
-
uses: actions/attest-build-provenance@
|
|
42
|
+
uses: actions/attest-build-provenance@v4
|
|
42
43
|
with:
|
|
43
44
|
subject-path: "*.tgz"
|
|
@@ -31,6 +31,8 @@ jobs:
|
|
|
31
31
|
|
|
32
32
|
- name: Setup node
|
|
33
33
|
uses: actions/setup-node@v6
|
|
34
|
+
with:
|
|
35
|
+
node-version: ${{ vars.NPM_VERSION }}
|
|
34
36
|
|
|
35
37
|
- name: Get next version
|
|
36
38
|
uses: MiguelRipoll23/get-next-version@v3.0.0
|
|
@@ -46,7 +48,7 @@ jobs:
|
|
|
46
48
|
NEXT_VERSION: ${{ steps.get-next-version.outputs.next-version }}
|
|
47
49
|
|
|
48
50
|
- name: Create pull request
|
|
49
|
-
uses: peter-evans/create-pull-request@
|
|
51
|
+
uses: peter-evans/create-pull-request@v8
|
|
50
52
|
with:
|
|
51
53
|
branch: version/${{ steps.get-next-version.outputs.next-version }}
|
|
52
54
|
commit-message: ${{ steps.get-next-version.outputs.next-version }}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
name: Publish
|
|
1
|
+
name: Publish package
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
pull_request:
|
|
@@ -8,8 +8,8 @@ on:
|
|
|
8
8
|
- main
|
|
9
9
|
|
|
10
10
|
permissions:
|
|
11
|
-
contents: write
|
|
12
11
|
id-token: write
|
|
12
|
+
contents: write
|
|
13
13
|
|
|
14
14
|
jobs:
|
|
15
15
|
create-tag:
|
|
@@ -70,8 +70,8 @@ jobs:
|
|
|
70
70
|
|
|
71
71
|
- name: Setup node
|
|
72
72
|
uses: actions/setup-node@v6
|
|
73
|
-
|
|
74
73
|
with:
|
|
74
|
+
node-version: ${{ vars.NPM_VERSION }}
|
|
75
75
|
registry-url: https://registry.npmjs.org/
|
|
76
76
|
|
|
77
77
|
- name: Get version
|
|
@@ -79,9 +79,5 @@ jobs:
|
|
|
79
79
|
echo "NPM_VERSION=${{ needs.create-tag.outputs.tag-name }}" >> $GITHUB_ENV
|
|
80
80
|
|
|
81
81
|
- name: Publish package
|
|
82
|
-
|
|
83
|
-
env:
|
|
84
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
85
|
-
|
|
86
82
|
run: |
|
|
87
83
|
npm publish --access public --provenance --tag "$(if [[ $NPM_VERSION == *-* ]]; then echo beta; else echo latest; fi)"
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
Homebridge plugin that creates a security system accessory that can be triggered by HomeKit sensors.
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
[](https://www.buymeacoffee.com/MiguelRipoll23)
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
package/config.schema.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"pluginAlias": "security-system",
|
|
3
3
|
"pluginType": "accessory",
|
|
4
4
|
"headerDisplay": "Create a security system accessory that can be triggered by HomeKit sensors.",
|
|
5
|
-
"footerDisplay": "[Need help?](https://github.com/MiguelRipoll23/homebridge-securitysystem/issues) | [Donate](https://
|
|
5
|
+
"footerDisplay": "[Need help?](https://github.com/MiguelRipoll23/homebridge-securitysystem/issues) | [Donate](https://buymeacoffee.com/miguelripoll23)",
|
|
6
6
|
"schema": {
|
|
7
7
|
"title": "Security System",
|
|
8
8
|
"type": "object",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-securitysystem",
|
|
3
3
|
"displayName": "Homebridge Security System",
|
|
4
|
-
"version": "9.1.
|
|
4
|
+
"version": "9.1.2",
|
|
5
5
|
"description": "Homebridge plugin that creates a security system accessory that can be triggered by HomeKit sensors.",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"scripts": {
|
|
@@ -31,6 +31,10 @@
|
|
|
31
31
|
"type": "github",
|
|
32
32
|
"url": "https://github.com/sponsors/MiguelRipoll23"
|
|
33
33
|
},
|
|
34
|
+
{
|
|
35
|
+
"type": "buymeacoffee",
|
|
36
|
+
"url": "https://www.buymeacoffee.com/MiguelRipoll23"
|
|
37
|
+
},
|
|
34
38
|
{
|
|
35
39
|
"type": "paypal",
|
|
36
40
|
"url": "https://paypal.me/miguelripoll23"
|
|
@@ -46,6 +50,6 @@
|
|
|
46
50
|
"node-persist": "^4.0.1"
|
|
47
51
|
},
|
|
48
52
|
"devDependencies": {
|
|
49
|
-
"eslint": "^
|
|
53
|
+
"eslint": "^10.0.0"
|
|
50
54
|
}
|
|
51
55
|
}
|
package/.github/FUNDING.yml
DELETED