Skip to content

Commit

Permalink
fix: docker image releae checkout ref w/o tags
Browse files Browse the repository at this point in the history
fixes #308

Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck committed Feb 3, 2022
1 parent 916951a commit 7a057d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 7a057d2

Please sign in to comment.