Skip to content

Commit

Permalink
Enforce loading all tags for compile workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaScheller committed Sep 2, 2023
1 parent ac5bfad commit 2b1fb3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build_houdini.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
uses: actions/checkout@v3
- name: Switch to latest release tag
run: |
git fetch --all --tags
latest_release_tag=$(git tag -l --sort=-version:refname v* | head -1)
git checkout tags/$latest_release_tag
- name: Install system packages
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ include_directories(${CMAKE_SOURCE_DIR}/src/utils)
link_directories(${AR_HOUDINI_LIB_DIR})
# Usd (Already provided via Houdini)
link_directories(${AR_PXR_LIB_DIR})
# Python (Already provided via Houdini)
# Python
link_directories(${AR_PYTHON_LIB_DIR})

### Targets ###
Expand Down

0 comments on commit 2b1fb3c

Please sign in to comment.