We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deba05f commit 5804d0eCopy full SHA for 5804d0e
.github/workflows/ci.yml
@@ -76,11 +76,14 @@ jobs:
76
- name: Build and Test
77
shell: bash
78
run: |
79
- # Build the Makefile
+ # Define the version from GitHub to ensure it's set correctly.
80
+ MODULE_VERSION=0.17
81
+
82
+ # Build the Makefile, explicitly passing the VERSION
83
if [ "$RUNNER_OS" == "Windows" ]; then
- perl Makefile.PL INC="-I$env:LUA_INC_PATH" LIBS="-L$env:LUA_LIB_PATH -llua53"
84
+ perl Makefile.PL VERSION=$MODULE_VERSION INC="-I$env:LUA_INC_PATH" LIBS="-L$env:LUA_LIB_PATH -llua53"
85
else
- perl Makefile.PL
86
+ perl Makefile.PL VERSION=$MODULE_VERSION
87
fi
88
89
# Compile the module
0 commit comments