-
Notifications
You must be signed in to change notification settings - Fork 13
35 lines (29 loc) · 947 Bytes
/
release.yml
File metadata and controls
35 lines (29 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Release
on:
release:
types:
- published
permissions: {}
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout the repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Adjust version number
shell: bash
run: |
yq -i -o json '.version="${{ github.event.release.tag_name }}"' \
"${{ github.workspace }}/custom_components/wattbox/manifest.json"
- name: Zip the integration directory
shell: bash
run: |
cd "${{ github.workspace }}/custom_components/wattbox"
zip hass-wattbox.zip -r ./
- name: Upload zip to the release
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
with:
files: ${{ github.workspace }}/custom_components/wattbox/hass-wattbox.zip