Upload assets

This commit is contained in:
Markus Olsson 2023-06-21 11:32:16 +02:00
parent 4f2c24c09f
commit 265c5b9e9d

View file

@ -105,3 +105,20 @@ jobs:
- name: List assets - name: List assets
run: ls -R dist run: ls -R dist
shell: bash shell: bash
- name: Upload macOS artifacts
uses: actions/upload-artifact@v3
if: ${{runner.os == 'macOS'}}
with:
name: ${{runner.os}}-${{matrix.arch}}
path: dist/GitHubDesktop-${{matrix.arch}}.zip
if-no-files-found: error
- name: Upload Windows artifacts
uses: actions/upload-artifact@v3
if: ${{runner.os == 'Windows'}}
with:
name: ${{runner.os}}-${{matrix.arch}}
path: |
dist/installer/GitHubDesktop-*.nupkg
dist/installer/GitHubDesktopSetup-${{matric.arch}}.exe
dist/installer/GitHubDesktopSetup-${{matric.arch}}.msi
if-no-files-found: error