Skip to content

Aquanta Integration 2.0.4 for Home Assistant #4

Aquanta Integration 2.0.4 for Home Assistant

Aquanta Integration 2.0.4 for Home Assistant #4

Workflow file for this run

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@v3.5.3"
- 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@v0.1.15
with:
files: ${{ github.workspace }}/custom_components/aquanta/aquanta.zip