mirror of
https://github.com/desktop/desktop
synced 2024-10-31 11:07:25 +00:00
Upload assets
This commit is contained in:
parent
4f2c24c09f
commit
265c5b9e9d
1 changed files with 17 additions and 0 deletions
17
.github/workflows/ci.yml
vendored
17
.github/workflows/ci.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue