From c07c19e71a6229029e4339fa58f7a0b9cd2daa8c Mon Sep 17 00:00:00 2001 From: "Daniel Kollmannsberger (ext.)" Date: Tue, 30 Jan 2024 22:23:14 +0000 Subject: [PATCH] fix release cicd --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5f27118..070b903 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,15 +21,15 @@ jobs: shell: "bash" run: | yq -i -o json '.version="${{ github.event.release.tag_name }}"' \ - "${{ github.workspace }}/custom_components/integration_blueprint/manifest.json" + "${{ github.workspace }}/custom_components/hacs_vikunja_integration/manifest.json" - name: "ZIP the integration directory" shell: "bash" run: | - cd "${{ github.workspace }}/custom_components/integration_blueprint" + cd "${{ github.workspace }}/custom_components/hacs_vikunja_integration" zip integration_blueprint.zip -r ./ - name: "Upload the ZIP file to the release" uses: softprops/action-gh-release@v0.1.15 with: - files: ${{ github.workspace }}/custom_components/integration_blueprint/integration_blueprint.zip + files: ${{ github.workspace }}/custom_components/hacs_vikunja_integration/hacs_vikunja_integration.zip