Skip to content

Commit 4540720

Browse files
committed
Release 1.7.4
2 parents 6cf42f3 + 9a11741 commit 4540720

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

.github/workflows/release.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
on:
2+
push:
3+
# Sequence of patterns matched against refs/tags
4+
tags:
5+
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
6+
7+
name: Create Release
8+
9+
jobs:
10+
build:
11+
name: Create Release
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v2
16+
- name: Create Release
17+
id: create_release
18+
uses: actions/create-release@v1
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
21+
with:
22+
tag_name: ${{ github.ref }}
23+
release_name: Release ${{ github.ref }}
24+
# body: |
25+
# Changes in this Release
26+
# - First Change
27+
# - Second Change
28+
draft: false
29+
prerelease: false

plugin_info/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
"documentation": "https://jeedom-zigate.github.io/jeedom-plugin-zigate",
1717
"language": ["fr_FR", "en_US"],
1818
"compatibility": ["miniplus", "smart", "rpi", "docker", "diy", "v4"],
19-
"pluginVersion": "1.7.3"
19+
"pluginVersion": "1.7.4"
2020
}

resources/zigate_version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.40.7
1+
0.40.8

0 commit comments

Comments
 (0)