From 887a8721c58b99b0d7fbdd210422a52187a6f1cd Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Thu, 27 Feb 2020 12:14:07 -0800 Subject: [PATCH] Upload dmg artifact on tag (#836) Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/836 ^ Reviewed By: nikoant Differential Revision: D20139272 fbshipit-source-id: 0246b571399744b57aa8a222bbcad7238f52fe96 --- .github/workflows/nodejs.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index c9b291ef5..63341e02e 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -45,9 +45,15 @@ jobs: with: name: Flipper-win.zip path: dist/Flipper-win.zip - - name: upload mac artifact + - name: upload mac zip artifact uses: actions/upload-artifact@v1 if: matrix.os == 'macos-latest' with: name: Flipper-mac.zip path: dist/Flipper-mac.zip + - name: upload mac dmg artifact + uses: actions/upload-artifact@v1 + if: matrix.os == 'macos-latest' + with: + name: Flipper-mac.dmg + path: dist/Flipper-mac.dmg