Skip to content

Commit

Permalink
Add debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
RFlipper committed Mar 26, 2024
1 parent 93a3da6 commit 0774aeb
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/publish-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ on:

env:
BUILD_CONFIGURATION: 'Release' # set this to the appropriate build configuration
DOTNET_VERSION: '8.0.202'
DOTNET_VERSION: '8.0.203'

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"

build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand All @@ -38,8 +37,15 @@ jobs:

- name: Generate a NuGet package
working-directory: ./CsvHelper.FastDynamic
run: dotnet pack --no-build -c Release -p:PackageID=Plumsail.CsvHelpere.FastDynamic -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg --version-suffix ci${{ github.run_id }} -o .
run: dotnet pack --no-build -c Release -p:PackageID=Plumsail.CsvHelper.FastDynamic -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg --version-suffix ci${{ github.run_id }} -o .

- name: Show some info
working-directory: ./CsvHelper.FastDynamic
run: |
pwd
ls -lha
dotnet nuget list source
- name: Push to GitHub package registry
working-directory: ./CsvHelper.FastDynamic
run: dotnet nuget push *.nupkg -k $NUGET_AUTH_TOKEN -s https://api.nuget.org/v3/index.json --skip-duplicate
run: dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json -k $NUGET_AUTH_TOKEN --skip-duplicate

0 comments on commit 0774aeb

Please sign in to comment.