Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make modules information in publish workflow configurable - master #813

Merged
merged 12 commits into from
Sep 10, 2021
Merged
Prev Previous commit
Next Next commit
Revert "Fix module name inside publish-docker-helm workflow"
This reverts commit 47d17ce.

Signed-off-by: Peter Suna <[email protected]>
  • Loading branch information
PeterSuna committed Sep 9, 2021
commit f9c2942e1ba14b4aff663dbf86e6ecb028864de8
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
echo "DOCKER_IMAGE_NAME=$(echo $DOCKER_IMAGE_NAME)" >> $GITHUB_ENV
echo "DOCKER_IMAGE_NAME_TAG=$(echo $DOCKER_IMAGE_NAME_TAG)" >> $GITHUB_ENV
- name: Build docker image
run: mvn install -B -pl :${{ github.event.inputs.app-name }}-app-module,:${{ github.event.inputs.app-name }}-app,:${{ github.event.inputs.app-name }}-app-docker -P docker
run: mvn install -B -pl :${{ github.event.inputs.app-name }}-module,:${{ github.event.inputs.app-name }}-app,:${{ github.event.inputs.app-name }}-app-docker -P docker
- name: Tag image
run: |
image_name=$(mvn help:evaluate -f ${{ env.app-aggregator-dir}}/${{ github.event.inputs.app-name }}-app-docker/pom.xml -Dexpression=image.name -q -DforceStdout)
Expand Down