[chore] Fix md generation commands in makefile (#865)

This commit is contained in:
Liudmila Molkova 2024-04-02 04:10:57 -07:00 committed by GitHub
parent a04a1f4ba4
commit c33835975b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -95,13 +95,13 @@ yamllint:
.PHONY: table-generation .PHONY: table-generation
table-generation: table-generation:
docker run --rm -v $(PWD)/model:/source -v $(PWD)/docs:/spec \ docker run --rm -v $(PWD)/model:/source -v $(PWD)/docs:/spec \
otel/semconvgen:$(SEMCONVGEN_VERSION) -f /source markdown 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)/docs:/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 --md-check
.PHONY: schema-check .PHONY: schema-check
schema-check: schema-check: