From 1209af9913d4712406bc0fd41e93fe77544f57b7 Mon Sep 17 00:00:00 2001 From: Moshe Immerman Date: Sun, 14 Jul 2024 10:54:24 +0300 Subject: [PATCH] fix: semantic release rate limiting --- .github/workflows/publish.yaml | 8 -------- .releaserc | 2 ++ Dockerfile.canary-checker | 2 +- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index d2a18cd..20e5900 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -58,14 +58,6 @@ jobs: tags: 'latest,v${{ env.RELEASE_VERSION }}' platforms: linux/amd64 - - name: Update base image tag in canary-checker - run: | - sed -i "s|flanksource/base-image:[^ ]*|flanksource/base-image:v${{ env.RELEASE_VERSION }}|g" Dockerfile.canary-checker - git config --global user.name 'flankbot' && git config --global user.email 'flankbot@users.noreply.github.com' - git add Dockerfile.canary-checker - git commit -m "[skip ci] bump canary-checker base image to v${{ env.RELEASE_VERSION }} - git push - arm64: needs: semantic-release runs-on: ubuntu-latest diff --git a/.releaserc b/.releaserc index fab306e..23a750e 100644 --- a/.releaserc +++ b/.releaserc @@ -13,3 +13,5 @@ plugins: - { type: style, release: false } - "@semantic-release/release-notes-generator" - - "@semantic-release/github" + - successComment: false + failTitle: false \ No newline at end of file diff --git a/Dockerfile.canary-checker b/Dockerfile.canary-checker index f026d5e..36f6175 100644 --- a/Dockerfile.canary-checker +++ b/Dockerfile.canary-checker @@ -1,4 +1,4 @@ -FROM --platform=${BUILDPLATFORM:-linux/amd64} flanksource/base-image:v0.2.0 +FROM --platform=${BUILDPLATFORM:-linux/amd64} flanksource/base-image ARG TARGETARCH WORKDIR /app