-
-
Notifications
You must be signed in to change notification settings - Fork 4
40 lines (33 loc) · 1.05 KB
/
release.yml
File metadata and controls
40 lines (33 loc) · 1.05 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
name: "Release"
on:
release:
types:
- "published"
env:
RELEASE_VERSION: ""
jobs:
release:
name: "Release"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/checkout@v4.1.2"
- name: "Get version number from release tag"
shell: "bash"
run: |
echo "RELEASE_VERSION=$(echo '${{ github.event.release.tag_name }}' | sed s/v//)" >> $GITHUB_ENV
- name: "Adjust version number"
if: env.release_version != ''
shell: "bash"
run: |
yq -i -o json '.version="${{ env.RELEASE_VERSION }}"' \
"${{ github.workspace }}/custom_components/aquanta/manifest.json"
- name: "ZIP the integration directory"
shell: "bash"
run: |
cd "${{ github.workspace }}/custom_components/aquanta"
zip aquanta.zip -r ./
- name: "Upload the ZIP file to the release"
uses: softprops/action-gh-release@v2.0.4
with:
files: ${{ github.workspace }}/custom_components/aquanta/aquanta.zip