From 5d05d1b9eef4d7aaead5426522b233e04c4645a3 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Mon, 11 Nov 2024 14:52:42 +0100 Subject: [PATCH] Drop upload and signing of version files in ghcr.io (#399) The upload and signing of version files to ghcr.io was an experiment and is not really necessary. Let's drop it. This should unblock our CI and allow updating the version file (which is currently blocked due to the request rate limiting). --- .github/workflows/version.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 9672a10d..55ee59b0 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -104,13 +104,8 @@ jobs: - name: Install AWS CLI run: pip install awscli - - name: Upload file - run: | - cosign upload blob -f ${{ matrix.path }} ghcr.io/home-assistant/version/${{ matrix.path }} - - name: Sign Cosign run: | - cosign sign --yes ghcr.io/home-assistant/version/${{ matrix.path }} cosign sign-blob --yes ${{ matrix.path }} --bundle ${{ matrix.path }}.sig - name: Upload signature