From 8fbcba2b8acbbb6e8b9ca383e62d718ae1d83d7e Mon Sep 17 00:00:00 2001 From: Jezza34000 <57314417+Jezza34000@users.noreply.github.com> Date: Wed, 20 Nov 2024 06:53:16 +0100 Subject: [PATCH] fix release.yml paths --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 50b68d9..005c651 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,15 +15,15 @@ jobs: contents: write steps: - name: "Checkout the repository" - uses: "actions/checkout@v4.2.2" + uses: "actions/checkout@v4" - name: "ZIP the integration directory" shell: "bash" run: | - cd "${{ github.workspace }}/custom_components/integration_blueprint" - zip integration_blueprint.zip -r ./ + cd "${{ github.workspace }}/custom_components/veolia" + zip veolia.zip -r ./ - name: "Upload the ZIP file to the release" - uses: "softprops/action-gh-release@v2.0.9" + uses: "softprops/action-gh-release@v2.1.0" with: - files: ${{ github.workspace }}/custom_components/integration_blueprint/integration_blueprint.zip + files: ${{ github.workspace }}/custom_components/integration_blueprint/veolia.zip