Skip to content

Commit 5f241f9

Browse files
committed
Disable publish to GitHub NuGet feed
1 parent 998d9c2 commit 5f241f9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
# GitHub Packages Feed settings
99
GITHUB_FEED: https://nuget.pkg.github.com/fsprojects
1010
GITHUB_USER: fsprojects
11-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
11+
#GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1212

1313
on:
1414
push:
@@ -70,13 +70,13 @@ jobs:
7070
with:
7171
name: nupkg
7272
path: ./bin/nupkg/*.nupkg
73-
- name: Push to GitHub Feed
74-
shell: bash
75-
run: |
76-
for f in ./bin/nupkg/*.nupkg
77-
do
78-
curl -vX PUT -u "$GITHUB_USER:$GITHUB_TOKEN" -F package=@$f $GITHUB_FEED
79-
done
73+
#- name: Push to GitHub Feed
74+
# shell: bash
75+
# run: |
76+
# for f in ./bin/nupkg/*.nupkg
77+
# do
78+
# curl -vX PUT -u "$GITHUB_USER:$GITHUB_TOKEN" -F package=@$f $GITHUB_FEED
79+
# done
8080

8181
docs:
8282
runs-on: windows-latest

0 commit comments

Comments
 (0)