From edb0f38ec9a2bcececf880365e67627bdf0d70ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Kleinb=C3=B6lting?= Date: Tue, 3 Sep 2024 13:52:08 +0200 Subject: [PATCH] build: Remove manifest from release-please --- .github/release-please/manifest.json | 3 --- .github/workflows/publish.yml | 4 +--- 2 files changed, 1 insertion(+), 6 deletions(-) delete mode 100644 .github/release-please/manifest.json diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json deleted file mode 100644 index a5d1cf28..00000000 --- a/.github/release-please/manifest.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - ".": "2.2.0" -} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1106ccaf..12a4a370 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,7 +8,6 @@ on: create: jobs: - # Build for release and publish amd64 publish_amd64: if: github.ref == 'refs/heads/main' || (github.event_name == 'create' && startsWith(github.ref, 'refs/tags/')) @@ -61,7 +60,7 @@ jobs: publish_manifest: name: manifest runs-on: ubuntu-latest - needs: [ publish_amd64, publish_arm64 ] + needs: [publish_amd64, publish_arm64] if: github.ref == 'refs/heads/main' || (github.event_name == 'create' && startsWith(github.ref, 'refs/tags/dsp-meta-cmd')) outputs: tag: ${{ steps.output_docker_image_tag.outputs.tag }} @@ -105,4 +104,3 @@ jobs: with: token: ${{ secrets.DASCHBOT_PAT }} config-file: .github/release-please/config.json - manifest-file: .github/release-please/manifest.json