Skip to content

Commit

Permalink
v1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ttldtor committed Feb 8, 2024
1 parent e0c5271 commit 9905e07
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9905e07

Please sign in to comment.