Fix path of md table generation make task (#173)
This commit is contained in:
parent
4142dd35dd
commit
fa9dfd3b63
4
Makefile
4
Makefile
|
|
@ -74,13 +74,13 @@ yamllint:
|
||||||
# Generate markdown tables from YAML definitions
|
# Generate markdown tables from YAML definitions
|
||||||
.PHONY: table-generation
|
.PHONY: table-generation
|
||||||
table-generation:
|
table-generation:
|
||||||
docker run --rm -v $(PWD)/model:/source -v $(PWD)/specification:/spec \
|
docker run --rm -v $(PWD)/model:/source -v $(PWD)/docs:/spec \
|
||||||
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown -md /spec
|
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown -md /spec
|
||||||
|
|
||||||
# Check if current markdown tables differ from the ones that would be generated from YAML definitions
|
# Check if current markdown tables differ from the ones that would be generated from YAML definitions
|
||||||
.PHONY: table-check
|
.PHONY: table-check
|
||||||
table-check:
|
table-check:
|
||||||
docker run --rm -v $(PWD)/model:/source -v $(PWD)/specification:/spec \
|
docker run --rm -v $(PWD)/model:/source -v $(PWD)/docs:/spec \
|
||||||
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown -md /spec --md-check
|
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown -md /spec --md-check
|
||||||
|
|
||||||
.PHONY: schema-check
|
.PHONY: schema-check
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue