Skip to content

Commit 2b6d461

Browse files
committed
Envvar, not output
1 parent e850ed1 commit 2b6d461

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/gtest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ jobs:
4141
conan remote add conan-nexus https://nexus.cridland.io/repository/dwd-conan --force
4242
conan remote login conan-nexus ci --password ${{ secrets.NEXUS_PASSWORD }}
4343
- name: Conan Deps
44-
run: conan install . --output-folder=gh-build -s build_type=Debug -s compiler.cppstd=gnu23 -b missing --version=${{ steps.tag.outputs.version }}
44+
run: conan install . --output-folder=gh-build -s build_type=Debug -s compiler.cppstd=gnu23 -b missing --version=${{ env.VERSION }}
4545
- name: Create package
46-
run: conan create . --version=${{ steps.tag.outputs.version }}
46+
run: conan create . --version=${{ env.VERSION }}
4747
- name: Conan deps for tests
48-
run: cd test && conan install . --output-folder=. -s build_type=Debug -s compiler.cppstd=gnu23 -b missing --version=${{ steps.tag.outputs.version }}
48+
run: cd test && conan install . --output-folder=. -s build_type=Debug -s compiler.cppstd=gnu23 -b missing --version=${{ env.VERSION }}
4949
- name: CMake tests
5050
run: cd test && cmake -B gh-build -DCMAKE_BUILD_TYPE=Debug
5151
- name: Build Wrapper

0 commit comments

Comments
 (0)