Skip to content

Commit f019713

Browse files
committed
try pushing
1 parent beda520 commit f019713

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,16 @@ jobs:
3232
retention-days: 7
3333
- name: Verify trimming compatibility
3434
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+
3545
test:
3646
name: Test / ${{ matrix.os }} / ${{ matrix.arch }} / ${{ matrix.tfm }}
3747
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)