We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent beda520 commit f019713Copy full SHA for f019713
.github/workflows/ci.yml
@@ -32,6 +32,16 @@ jobs:
32
retention-days: 7
33
- name: Verify trimming compatibility
34
run: dotnet publish TrimmingTestApp
35
+
36
+ - name: Push package to feed 🐙
37
+ id: push-feed
38
+ if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' && github.event_name != 'schedule'
39
+ shell: bash
40
+ env:
41
+ FEED_API_KEY: ${{ secrets.FEED_API_KEY }}
42
+ FEED_SOURCE: ${{ secrets.FEED_SOURCE }}
43
+ run: dotnet nuget push artifacts/**/*.nupkg --api-key "$FEED_API_KEY" --source "$FEED_SOURCE"
44
45
test:
46
name: Test / ${{ matrix.os }} / ${{ matrix.arch }} / ${{ matrix.tfm }}
47
runs-on: ${{ matrix.os }}
0 commit comments