Skip to content

Commit

Permalink
Fix YAML CI/CD env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
dudoslav committed Mar 13, 2024
1 parent 1a497fa commit 070c5de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: cmake -S . -B build -DTILEDB_CMAKE_IDE=ON
- name: CPack Package Source
env:
TILEDB_PACKAGE_VERSION=${{ steps.get-values.outputs.release_version }}
TILEDB_PACKAGE_VERSION: ${{ steps.get-values.outputs.release_version }}
run: cd build && cpack --config CPackSourceConfig.cmake
- name: Upload Release Artifacts
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
shell: bash
- name: Build TileDB
env:
TILEDB_PACKAGE_VERSION=${{ steps.get-values.outputs.release_version }}
TILEDB_PACKAGE_VERSION: ${{ steps.get-values.outputs.release_version }}
run: cmake --build build --config Release --target package
- name: Upload release artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 070c5de

Please sign in to comment.