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 ef1ccf4 commit a1a94f4Copy full SHA for a1a94f4
.github/workflows/mobsf-test.yml
@@ -47,8 +47,9 @@ jobs:
47
- name: Install macOS Dependencies
48
if: startsWith(matrix.os, 'macOS')
49
run: |
50
- curl -L https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-2/wkhtmltox-0.12.6-2.macos-cocoa.pkg -O
51
- installer -pkg wkhtmltox-0.12.6-2.macos-cocoa.pkg -target ~
+ export WKHTML_URL=https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-2/
+ export WKHTML_PKG=wkhtmltox-0.12.6-2.macos-cocoa.pkg
52
+ curl -L ${WKHTML_URL}${WKHTML_PKG} -O && sudo installer -pkg ${WKHTML_PKG} -target ~ && rm -rf ${WKHTML_PKG}
53
54
- name: Install Windows Dependencies
55
if: startsWith(matrix.os, 'windows')
0 commit comments