Skip to content

Commit

Permalink
Add debug flag to buildAndPublish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrosperrin committed Feb 24, 2024
1 parent 996b275 commit 573b75b
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/buildAndPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
tag_prefix: ''
version_format: '${major}.${minor}.${patch}-preview${increment}'
search_commit_body: true
debug: true

- name: Setup dotnet ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v3
Expand All @@ -49,9 +50,9 @@ jobs:
reporter: dotnet-trx
fail-on-error: true

- name: Push to NuGet package feed
env:
NUGET_URL: ${{ inputs.feedUrl }}
NUGET_API_KEY: ${{ secrets.feedAPIKey }}
run: dotnet nuget push '**/*.nupkg' --source "$($env:NUGET_URL)" --api-key "$($env:NUGET_API_KEY)"
if: github.event_name == 'push'
# - name: Push to NuGet package feed
# env:
# NUGET_URL: ${{ inputs.feedUrl }}
# NUGET_API_KEY: ${{ secrets.feedAPIKey }}
# run: dotnet nuget push '**/*.nupkg' --source "$($env:NUGET_URL)" --api-key "$($env:NUGET_API_KEY)"
# if: github.event_name == 'push'

0 comments on commit 573b75b

Please sign in to comment.