From 08e83560e4b235d1d65a4ce64db60b7c292634d6 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Fri, 24 Apr 2020 01:55:12 -0700 Subject: [PATCH] Add "debugging" to dmg upload (#1044) Summary: Really no clue why this isn't working. Manually running the exact same curl command works just fine. Adding an `ls` and removing paths because why not. Pull Request resolved: https://github.com/facebook/flipper/pull/1044 Test Plan: Next release, sadly. Reviewed By: nikoant Differential Revision: D21202248 Pulled By: passy fbshipit-source-id: e6298e8f8f191f7864e5e48ef1a1ad18b71bf3ab --- .github/workflows/dmg-release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dmg-release.yml b/.github/workflows/dmg-release.yml index cccdd62b4..a9cdd5851 100644 --- a/.github/workflows/dmg-release.yml +++ b/.github/workflows/dmg-release.yml @@ -36,10 +36,11 @@ jobs: uses: actions/download-artifact@v1 with: name: 'Flipper-mac.dmg' - path: 'dist/Flipper-mac.dmg' + path: 'Flipper-mac.dmg' + - run: ls -la Flipper-mac.dmg - name: Publish uses: skx/github-action-publish-binaries@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - args: 'dist/Flipper-mac.dmg' + args: 'Flipper-mac.dmg'