File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 19
19
run : |
20
20
yum update -y
21
21
yum groupinstall "Development Tools" -y
22
- yum install -y tar wget lzip
22
+ yum install -y tar wget lzip dnf
23
23
24
24
- name : Build MuPDF
25
25
# https://mupdf.readthedocs.io/en/latest/quick-start-guide.html
@@ -32,11 +32,18 @@ jobs:
32
32
- name : Create the layer
33
33
run : |
34
34
mkdir -p layer/bin
35
- cp /usr/local/bin/* layer/bin/
35
+ cp /usr/local/bin/mutool layer/bin/
36
+ cp /usr/local/bin/muraster layer/bin/
36
37
cd layer
37
38
zip -r9 ../mutool-layer.zip .
38
39
cd ..
39
40
41
+ - name : Workaround for the nodejs20.x runtime
42
+ run : |
43
+ sudo dnf -y install nodejs20
44
+ mv /opt/actions-runner/externals/node20/bin/node /opt/actions-runner/externals/node20/bin/node-bak
45
+ ln -s /usr/bin/node-20 /opt/actions-runner/externals/node20/bin/node
46
+
40
47
- name : Upload the layer to the github artifact
41
48
uses : actions/upload-artifact@v4
42
49
with :
You can’t perform that action at this time.
0 commit comments