-
Notifications
You must be signed in to change notification settings - Fork 15
36 lines (30 loc) · 970 Bytes
/
release.yaml
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
36
name: Release
on:
release:
# types: [prereleased,published]
types: [published]
jobs:
release_zip_file:
name: Prepare release asset
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Get version
id: version
uses: home-assistant/actions/helpers/version@master
- name: "Update manifest.json"
run: |
python3 ${{ github.workspace }}/.github/workflows/update_manifest.py --version ${{ steps.version.outputs.version }}
- name: Create zip
run: |
cd custom_components/pun_sensor
zip pun_sensor.zip -r ./
- name: Upload zip to release
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./custom_components/pun_sensor/pun_sensor.zip
asset_name: pun_sensor.zip
tag: ${{ github.ref }}
overwrite: true