Skip to content

Commit

Permalink
fix luajit path
Browse files Browse the repository at this point in the history
  • Loading branch information
imring authored Nov 8, 2024
1 parent ff001c3 commit 73a40fe
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1

- name: Set reusable strings
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
Expand All @@ -39,10 +40,6 @@ jobs:
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: Install Developer Command Prompt for MSVC (Windows)
if: matrix.os == 'windows-latest'
uses: ilammy/msvc-dev-cmd@v1

- name: Install LuaJIT
uses: leafo/gh-actions-lua@v10
with:
Expand All @@ -68,6 +65,10 @@ jobs:
target: 'desktop'
arch: 'gcc_64'

- name: Set LuaJIT Path
run: |
echo "LUA_DIR=${{ github.workspace }}/.lua" >> $GITHUB_ENV
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
Expand Down

0 comments on commit 73a40fe

Please sign in to comment.