From 112f53cc57e5931f1503dfcaa1644caf15362c30 Mon Sep 17 00:00:00 2001 From: Rob Herring Date: Wed, 28 Jun 2023 10:58:51 -0600 Subject: [PATCH] github workflow: Attempt to fix version in doc The released version wasn't picking up the release tag, but using the prior tag instead. Signed-off-by: Rob Herring --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99fc512..0b21191 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,11 +27,11 @@ jobs: pip3 install --user typing pip3 install --user Sphinx pip3 install --user codespell + git fetch --tags --force # Needed to make git-describe work - name: build pdf run: | make latexpdf - git fetch --tags --force # Needed to make git-describe work mv build/latex/devicetree-specification.pdf build/latex/devicetree-specification-$(git describe).pdf - name: build html run: make html