Skip to content

Commit 5d8b1e1

Browse files
authored
fix: docker image releae checkout ref w/o tags (#309)
fixes #308 Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
1 parent 916951a commit 5d8b1e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@ jobs:
117117
ARTIFACT_DOCKER_SBOM: 'docker-image-bom'
118118
DOCKER_REPO: cyclonedx/cyclonedx-python
119119
steps:
120-
- name: Checkout code (tags/v${{ env.VERSION }})
120+
- name: Checkout code (v${{ env.VERSION }})
121121
# see https://github.com/actions/checkout
122122
uses: actions/checkout@v2.4.0
123123
with:
124-
ref: tags/v${{ env.VERSION }}
124+
ref: v${{ env.VERSION }}
125125
- name: setup dirs
126126
run: |
127127
mkdir "$REPORTS_DIR"

0 commit comments

Comments
 (0)