From 83807f12f616884ba58bedf5a5aaa917fe164f1d Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Thu, 5 Mar 2020 10:43:44 -0800 Subject: [PATCH] Build mac dmg in Action (#869) Summary: `build --mac` no longer implies building the DMG so the upload step currently fails. Pull Request resolved: https://github.com/facebook/flipper/pull/869 Reviewed By: mweststrate Differential Revision: D20283002 Pulled By: passy fbshipit-source-id: c255ae3a7e4e006e198b79ad8ce79cfd5e80b6a3 --- .github/workflows/nodejs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index babb5199c..114256db8 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -29,7 +29,7 @@ jobs: run: yarn build --linux - name: build macos if: matrix.os == 'macos-latest' - run: yarn build --mac + run: yarn build --mac --mac-dmg - name: build windows if: matrix.os == 'windows-latest' run: yarn build --win