From 400e9aa41679421db9a93ad2d8fa6e3e060b0a93 Mon Sep 17 00:00:00 2001 From: Manuel Stahl Date: Mon, 22 Apr 2024 10:16:42 +0200 Subject: [PATCH] Fix fetching tags in github workflows The actions/checkout step has some bugs: https://github.com/actions/checkout/issues/1467 Change-Id: I6bd88433425657081c2033b55bf01587979983df --- .github/workflows/docker-release.yml | 1 - .github/workflows/github-release.yml | 3 --- 2 files changed, 4 deletions(-) diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index afb1d58..6c0f6a8 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -25,7 +25,6 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 100 - fetch-tags: true - name: Set up QEMU uses: docker/setup-qemu-action@v3 diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index 99107ac..a5ece09 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -14,9 +14,6 @@ jobs: steps: - uses: actions/checkout@v4 - with: - fetch-depth: 100 - fetch-tags: true - uses: actions/setup-node@v4 with: node-version: "20"