From 98d69075649cb1723355a907239ff3e9a551df9f Mon Sep 17 00:00:00 2001 From: c8y3 <25362953+c8y3@users.noreply.github.com> Date: Fri, 24 Nov 2023 08:27:56 +0100 Subject: [PATCH] Retrieved version number after configure --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0737ee5..247a5ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,10 +7,6 @@ jobs: steps: - name: Check out repository code uses: actions/checkout@v4 - - name: Retrieve version number - id: requestMakefile - run: | - echo "VERSION=$(make help_version)" >> $GITHUB_OUTPUT - name: Install dependencies run: sudo apt-get install doxygen graphviz gcovr valgrind sloccount - name: Configure @@ -19,6 +15,10 @@ jobs: run: make rungcov valgrindu runtestc valgrindc sloccount - name: Build & package run: make build doc dev_doc deb + - name: Retrieve version number + id: requestMakefile + run: | + echo "VERSION=$(make help_version)" >> $GITHUB_OUTPUT - name: Archive .deb uses: actions/upload-artifact@v3 with: