File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -104,10 +104,7 @@ jobs:
104
104
TAG=${{ needs.set_tag.outputs.tag }}
105
105
TAR=projectm-$TAG-source.tar.gz
106
106
# Exclude VCS metadata and the output archive itself to avoid "file changed as we read it" errors
107
- tar --warning=no-file-changed -czvf "$TAR" \
108
- --exclude='.git*' \
109
- --exclude="$TAR" \
110
- .
107
+ tar --warning=no-file-changed --exclude-vcs --exclude="$TAR" -czvf "$TAR" .
111
108
- name : Upload artifact
112
109
uses : actions/upload-artifact@v4
113
110
with :
@@ -150,11 +147,10 @@ jobs:
150
147
with :
151
148
submodules : recursive
152
149
- name : Setup EMSDK
153
- uses : mymindstorm/setup-emsdk@v13
150
+ uses : mymindstorm/setup-emsdk@v14
154
151
with :
155
152
version : 3.1.53
156
153
actions-cache-folder : " emsdk-cache"
157
- cache : false # disable shared runner cache to avoid key reservation conflicts
158
154
- name : Install Dependencies
159
155
run : |
160
156
sudo apt-get update
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ else()
182
182
list (APPEND PROJECTM_OPENGL_LIBRARIES OpenGL::GLX )
183
183
endif ()
184
184
if (CMAKE_SYSTEM_NAME STREQUAL "Windows" )
185
- find_package (GLEW REQUIRED )
185
+ find_package (GLEW CONFIG REQUIRED )
186
186
# Prefer shared, but check for static lib if shared is not available.
187
187
if (TARGET GLEW::glew )
188
188
list (APPEND PROJECTM_OPENGL_LIBRARIES GLEW::glew )
You can’t perform that action at this time.
0 commit comments