Skip to content

0.0.8.3

0.0.8.3 #14

Workflow file for this run

name: "Release"
on:
release:
types:
- "published"
workflow_dispatch: # Fügt die Möglichkeit hinzu, den Workflow manuell zu starten
permissions: {}
jobs:
release:
name: "Release"
runs-on: "ubuntu-latest"
permissions:
contents: write
steps:
- name: "Checkout the repository"
uses: "actions/checkout@v4"
- name: "Adjust version number"
shell: "bash"
run: |
yq -i -o json '.version="${{ github.event.release.tag_name || github.ref_name }}"' \
"${{ github.workspace }}/custom_components/violet_pool_controller/manifest.json"
- name: "ZIP the integration directory"
shell: "bash"
run: |
cd "${{ github.workspace }}/custom_components/violet_pool_controller"
zip violet_pool_controller.zip -r ./
- name: "Upload the ZIP file to the release"
uses: "softprops/action-gh-release@v2.0.8"
with:
files: ${{ github.workspace }}/custom_components/violet_pool_controller/violet_pool_controller.zip