From 7a057d2e2932b802519b942501717e661d253278 Mon Sep 17 00:00:00 2001 From: Jan Kowalleck Date: Thu, 3 Feb 2022 20:35:58 +0100 Subject: [PATCH] fix: docker image releae checkout ref w/o `tags` fixes #308 Signed-off-by: Jan Kowalleck --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ee6c2bcae..96fb74800 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -117,11 +117,11 @@ jobs: ARTIFACT_DOCKER_SBOM: 'docker-image-bom' DOCKER_REPO: cyclonedx/cyclonedx-python steps: - - name: Checkout code (tags/v${{ env.VERSION }}) + - name: Checkout code (v${{ env.VERSION }}) # see https://github.com/actions/checkout uses: actions/checkout@v2.4.0 with: - ref: tags/v${{ env.VERSION }} + ref: v${{ env.VERSION }} - name: setup dirs run: | mkdir "$REPORTS_DIR"