From 61cbfe25883f1fca05ed0bd6120bfb6fa52d5190 Mon Sep 17 00:00:00 2001 From: Dermot Duffy Date: Sun, 24 Nov 2024 15:44:44 -0800 Subject: [PATCH] ci: Delete unnecessary `release` workflow (#42) --- .github/workflows/release.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 49e49d8..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: "Release" - -on: - release: - types: - - "published" - -permissions: {} - -jobs: - release: - name: "Release" - runs-on: "ubuntu-latest" - permissions: - contents: write - steps: - - name: "Checkout the repository" - uses: "actions/checkout@v4.2.2" - - - name: "ZIP the integration directory" - shell: "bash" - run: | - cd "${{ github.workspace }}/custom_components/integration_blueprint" - zip integration_blueprint.zip -r ./ - - - name: "Upload the ZIP file to the release" - uses: "softprops/action-gh-release@v2.1.0" - with: - files: ${{ github.workspace }}/custom_components/integration_blueprint/integration_blueprint.zip