Upload arm64 artifacts

This commit is contained in:
Benjamin Staneck 2020-12-27 19:00:00 +01:00
parent 831c601a32
commit e406ca798e
No known key found for this signature in database
GPG key ID: 74A90736869653C2

View file

@ -39,11 +39,18 @@ jobs:
run: | run: |
echo "::set-output name=dmgName::$(ls dist/*.dmg | cut -d'/' -f2)" echo "::set-output name=dmgName::$(ls dist/*.dmg | cut -d'/' -f2)"
echo "::set-output name=dmgPath::$(ls dist/*.dmg)" 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 - name: Archive macOS Build Artifacts
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: ${{ steps.getmacosfilename.outputs.dmgName }} name: ${{ steps.getmacosfilename.outputs.dmgName }}
path: ${{ steps.getmacosfilename.outputs.dmgPath }} 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: ci_linux:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy: