Skip to content

Commit ad97e45

Browse files
committed
Temporarily comment-out NuGet publishing
This is done to test #254. I want to push an experimental tag to Github and I don't want it _actually published_. What I want is the build & pack to occur, and for that to be uploaded as an artifact. I can then inspect that, verify it's correct and then - if that's OK - reinstate the publishing logic.
1 parent a547cb5 commit ad97e45

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/releaseBuild.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ jobs:
4747
with:
4848
name: Build results (NuGet)
4949
path: packages/*.nupkg
50-
- name: Publish packages to GitHub feed
51-
if: ${{ github.event_name != 'pull_request' && github.ref_name == 'master' }}
52-
run: |
53-
dotnet nuget add source --username ${{ env.GithubNugetUsername }} --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/csf-dev/index.json"
54-
for package in packages/*.nupkg
55-
do
56-
dotnet nuget push $package --source github
57-
done
50+
# - name: Publish packages to GitHub feed
51+
# if: ${{ github.event_name != 'pull_request' && github.ref_name == 'master' }}
52+
# run: |
53+
# dotnet nuget add source --username ${{ env.GithubNugetUsername }} --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/csf-dev/index.json"
54+
# for package in packages/*.nupkg
55+
# do
56+
# dotnet nuget push $package --source github
57+
# done
5858

5959
build_docs_site:
6060
name: Build the documentation website

0 commit comments

Comments
 (0)