-
Notifications
You must be signed in to change notification settings - Fork 5
44 lines (38 loc) · 1.27 KB
/
release.yml
File metadata and controls
44 lines (38 loc) · 1.27 KB
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
37
38
39
40
41
42
43
44
---
name: Release
on:
release:
types:
- published
jobs:
release:
name: Release the Universal Notifier! 📢
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v6.0.1
- name: 🔢 Adjust version number
shell: bash
run: |
version="${{ github.event.release.tag_name }}"
version="${version,,}"
version="${version#v}"
yq e -P -o=json \
-i ".version = \"${version}\"" \
"${{ github.workspace }}/custom_components/universal_notifier/manifest.json"
- name: 📦 Created zipped release package
shell: bash
run: |
cd "${{ github.workspace }}/custom_components/universal_notifier"
zip universal_notifier.zip -r ./
- name: 🔏 Sign release package
uses: sigstore/gh-action-sigstore-python@v3.2.0
with:
inputs: ${{ github.workspace }}/custom_components/universal_notifier/universal_notifier.zip
- name: ⬆️ Upload zip to release
uses: softprops/action-gh-release@v2.5.0
with:
files: ${{ github.workspace }}/custom_components/universal_notifier/universal_notifier.zip