From e406ca798eae999cd83b56566126514aec77dbb4 Mon Sep 17 00:00:00 2001 From: Benjamin Staneck Date: Sun, 27 Dec 2020 19:00:00 +0100 Subject: [PATCH] Upload arm64 artifacts --- .github/workflows/nodejs.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index e46fc24e..1dae9448 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -39,11 +39,18 @@ jobs: run: | echo "::set-output name=dmgName::$(ls dist/*.dmg | cut -d'/' -f2)" echo "::set-output name=dmgPath::$(ls dist/*.dmg)" + echo "::set-output name=armDmgName::$(ls dist/*arm64.dmg | cut -d'/' -f2)" + echo "::set-output name=armDmgPath::$(ls dist/*arm64.dmg)" - name: Archive macOS Build Artifacts uses: actions/upload-artifact@v2 with: name: ${{ steps.getmacosfilename.outputs.dmgName }} path: ${{ steps.getmacosfilename.outputs.dmgPath }} + - name: Archive macOS arm64 Build Artifacts + uses: actions/upload-artifact@v2 + with: + name: ${{ steps.getmacosfilename.outputs.armDmgName }} + path: ${{ steps.getmacosfilename.outputs.armDmgPath }} ci_linux: runs-on: ubuntu-latest strategy: