Skip to content

Commit

Permalink
Fix release artifacts (#1720)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjohnsonpint authored Jun 15, 2022
1 parent 5289aea commit 12044ac
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,21 +103,11 @@ jobs:
**/*.received.*
- name: Archive Artifacts
# only archive on windows since we only pack on windows. See Pack step.
if: startsWith(matrix.os, 'windows')
uses: actions/upload-artifact@v3
with:
name: ${{ github.sha }}
if-no-files-found: error
path: |
${{ github.workspace }}/src/**/Release/*.nupkg
- name: Archive Artifacts (MAUI)
# only archive MAUI on macos since we only pack MAUI on macos. See Pack step.
# only archive on macos since we only pack on macos. See Pack step.
if: startsWith(matrix.os, 'macos')
uses: actions/upload-artifact@v3
with:
name: ${{ github.sha }}
if-no-files-found: error
path: |
${{ github.workspace }}/src/Sentry.Maui/bin/Release/*.nupkg
${{ github.workspace }}/src/**/Release/*.nupkg

0 comments on commit 12044ac

Please sign in to comment.