Skip to content

Commit

Permalink
fix: docker release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed Jan 8, 2025
1 parent f173f33 commit c908c63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/trigger-finalize-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@v4
- name: Read current version
run: |
echo "VERSION=$(grep "version=" gradle.properties | cut -d '=' -f 2)" >> $GITHUB_ENV
echo "VERSION=$(echo ${{ github.ref_name }} | cut -d '/' -f 2)" >> $GITHUB_ENV
- uses: eclipse-dataspacetck/tck-common/.github/actions/publish-docker-image@main
name: Publish DSP TCK Docker image (release)
with:
Expand All @@ -41,4 +41,4 @@ jobs:
namespace: "eclipsedataspacetck"
docker_user: ${{ secrets.DOCKER_HUB_USER }}
docker_token: ${{ secrets.DOCKER_HUB_TOKEN }}
docker_tag: $VERSION
docker_tag: ${{ env.VERSION }}

0 comments on commit c908c63

Please sign in to comment.