diff --git a/action.yaml b/action.yaml index dbbb803..5ef191c 100644 --- a/action.yaml +++ b/action.yaml @@ -121,3 +121,11 @@ runs: run: | echo "IMAGE_TAGS=${{ inputs.image_tags }}" >> $GITHUB_ENV + - name: Add PMO version tag + if: inputs.add_version_tag + run: | + source "${{ github.action_path }}/../bashlib.sh" + step "Image tags" "IMAGE_TAGS=${{ env.IMAGE_TAGS }} pmo-${{ steps.get_version.outputs.version }}" + echo "IMAGE_TAGS=${{ env.IMAGE_TAGS }} pmo-${{ steps.get_version.outputs.version }}" >> $GITHUB_ENV + +