From 069c190220434a5182382ee19cb4c6ec10626edc Mon Sep 17 00:00:00 2001 From: Radkesvat <134321679+radkesvat@users.noreply.github.com> Date: Thu, 28 Mar 2024 18:24:48 +0300 Subject: [PATCH] add build dir and change name --- .github/workflows/cmake-multi-linux.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake-multi-linux.yml b/.github/workflows/cmake-multi-linux.yml index f380226b..fcbe9aff 100644 --- a/.github/workflows/cmake-multi-linux.yml +++ b/.github/workflows/cmake-multi-linux.yml @@ -1,6 +1,6 @@ # This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform. # See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml -name: CMake on multiple platforms +name: linux gcc + clang on: push: @@ -37,6 +37,14 @@ jobs: steps: - uses: actions/checkout@v3 + + - name: Set reusable strings + # Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file. + id: strings + shell: bash + run: | + echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" + # - name: setup nasm windows # if: runner.os == 'Windows'