From c43fb86bccebddbaba10347335f6dcb93131cdf0 Mon Sep 17 00:00:00 2001 From: Robert Adams Date: Mon, 4 Dec 2023 02:32:31 +0000 Subject: [PATCH] workflow: correct reference to 'built/' Add BulletSimVersionInfo for non-Windows build --- .github/workflows/build-master.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-master.yml b/.github/workflows/build-master.yml index a9bb0d7..46f9278 100644 --- a/.github/workflows/build-master.yml +++ b/.github/workflows/build-master.yml @@ -123,6 +123,7 @@ jobs: shell: bash run: | mkdir built + cp bulletsim/BulletSimVersionInfo built/ cp bulletsim/*.${{ matrix.ext }} built/ @@ -131,7 +132,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: BulletSim-${{ matrix.osclass }}-${{ env.BuildDate }} - path: bulletsim/built/* + path: built/* if-no-files-found: error # vim: tabstop=2 shiftwidth=2 autoindent expandtab