-
Notifications
You must be signed in to change notification settings - Fork 440
36 lines (30 loc) · 1.02 KB
/
release.yml
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: ["published"]
jobs:
update_hacs_manifest:
name: "Prepare release asset"
runs-on: "ubuntu-latest"
steps:
- name: "Check out repository"
uses: "actions/checkout@v3"
- name: "Get version"
id: "version"
uses: "home-assistant/actions/helpers/version@master"
- name: "Set manifest version number"
run: |
python3 ${{ github.workspace }}/.github/update_hacs_manifest.py --version ${{ steps.version.outputs.version }}
- name: "Create zip"
run: |
cd custom_components/ui_lovelace_minimalist
zip ui_lovelace_minimalist.zip -r ./
- name: "Upload zip to release"
uses: "svenstaro/upload-release-action@v1-release"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
file: "./custom_components/ui_lovelace_minimalist/ui_lovelace_minimalist.zip"
asset_name: "ui_lovelace_minimalist.zip"
tag: "${{ github.ref }}"
overwrite: true