diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c6c4b1df..0615ca45 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -273,14 +273,14 @@ jobs: - name: Upload [Lib] uses: actions/upload-artifact@v4 with: - name: artifacts + name: artifacts-lib-${{matrix.config.name}}-${{matrix.buildType}} path: build-${{matrix.buildType}}/*.zip - name: Upload [Samples][Tools] if: ${{ !contains(matrix.buildType, 'Deb') }} uses: actions/upload-artifact@v4 with: - name: artifacts + name: artifacts-samples-and-tools-${{matrix.config.name}}-${{matrix.buildType}} path: | build-Samples/*.zip build-Tools/*.zip @@ -295,13 +295,17 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/download-artifact@v4 + with: + path: artifacts + pattern: artifacts-* + merge-multiple: true - name: 'Echo download path' run: echo ${{steps.download.outputs.download-path}} - name: Display structure of downloaded files run: ls -R - - uses: softprops/action-gh-release@v1 + - uses: softprops/action-gh-release@4634c16e79c963813287e889244c50009e7f0981 with: files: | artifacts/*.zip diff --git a/CMakeLists.txt b/CMakeLists.txt index 961437df..abe5e50f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ set(CMAKE_POLICY_DEFAULT_CMP0077 NEW) project(dxFeedGraalCxxApi) -set(DXFCXX_VERSION "v1.3.3" CACHE STRING "The dxFeed Graal CXX API package version") +set(DXFCXX_VERSION "v1.3.4" CACHE STRING "The dxFeed Graal CXX API package version") set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON)