Skip to content

Commit

Permalink
Fix deploy kafka images workflow
Browse files Browse the repository at this point in the history
Export kafka version and release version env vars
  • Loading branch information
ozangunalp committed Apr 6, 2023
1 parent 396c5c2 commit 713e0d3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-kafka-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
run: |
RELEASE_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
KAFKA_VERSION=$(mvn help:evaluate -Dexpression=kafka.version -q -DforceStdout)
echo "RELEASE_VERSION=${RELEASE_VERSION}" >> $GITHUB_ENV
echo "KAFKA_VERSION=${KAFKA_VERSION}" >> $GITHUB_ENV
echo "BUILD_IMAGE_TAG=${RELEASE_VERSION}" >> $GITHUB_ENV
echo "LATEST_IMAGE_TAG=latest-kafka-${KAFKA_VERSION}" >> $GITHUB_ENV
- name: Check Tag name
Expand Down

0 comments on commit 713e0d3

Please sign in to comment.