Skip to content

Commit a1a94f4

Browse files
committed
mac build qa
1 parent ef1ccf4 commit a1a94f4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/mobsf-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@ jobs:
4747
- name: Install macOS Dependencies
4848
if: startsWith(matrix.os, 'macOS')
4949
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 ~
50+
export WKHTML_URL=https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-2/
51+
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}
5253
5354
- name: Install Windows Dependencies
5455
if: startsWith(matrix.os, 'windows')

0 commit comments

Comments
 (0)