homebridge-securitysystem 7.2.1-beta.1 → 7.2.1-beta.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.
@@ -20,7 +20,7 @@ jobs:
20
20
  run: |
21
21
  branch_name="${{ github.event.pull_request.head.ref }}"
22
22
  tag_name=$(echo $branch_name | sed 's/version\///')
23
- echo "{tag-name}=$tag_name" >> $GITHUB_OUTPUT
23
+ echo "tag-name=$tag_name" >> $GITHUB_OUTPUT
24
24
 
25
25
  create-tag:
26
26
  name: Create new tag
@@ -33,7 +33,7 @@ jobs:
33
33
 
34
34
  - name: Create tag name
35
35
  run: |
36
- git tag ${{ needs.get-tag-name.outputs.tag-name }}
36
+ git tag "${{ needs.get-tag-name.outputs.tag-name }}"
37
37
 
38
38
  - name: Push tag to origin
39
- run: git push origin ${{ needs.get-tag-name.outputs.tag-name }}
39
+ run: git push origin "${{ needs.get-tag-name.outputs.tag-name }}"
@@ -30,7 +30,7 @@ jobs:
30
30
  uses: actions/checkout@v3
31
31
 
32
32
  - name: Generate tag name
33
- uses: MiguelRipoll23/generate-tag-name@v1.1.0
33
+ uses: MiguelRipoll23/generate-tag-name@v1.3.0
34
34
  id: generate-tag-name
35
35
  with:
36
36
  channel: ${{ inputs.channel }}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "homebridge-securitysystem",
3
3
  "displayName": "Homebridge Security System",
4
- "version": "7.2.1-beta.1",
4
+ "version": "7.2.1-beta.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": {