From b3e72365c9f7bf869bf5173218ac266785d92fc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Dymi=C5=84ski?= Date: Mon, 18 Sep 2023 13:40:08 +0200 Subject: [PATCH] Run always snapshot CI task MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mateusz DymiƄski --- .github/workflows/build.yml | 1 - .github/workflows/release.yml | 8 -------- 2 files changed, 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d6f9ee6..c0ac612 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,7 +45,6 @@ jobs: install-only: true - name: Snapshot - if: startsWith(github.ref , 'refs/tags/v') == false run: make snapshot env: GORELEASER_CURRENT_TAG: ${{ needs.version.outputs.docker-version }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cedffdc..8841278 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -83,11 +83,3 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} - - - name: Snapshot - if: startsWith(github.ref , 'refs/tags/v') == false - run: make snapshot - env: - GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} - GORELEASER_CURRENT_TAG: ${{ needs.version.outputs.docker-version }} - HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}