Skip to content

Commit

Permalink
Workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshClose committed Jan 22, 2024
1 parent 892bcf1 commit 7076885
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- name: Display .NET Version
run: dotnet --version
- name: Build
run: dotnet build src/CsvHelper/CsvHelper.proj --configuration Release -p:AssemblyVersion=${{ steps.gitversion.outputs.major }}.0.0.0 -p:FileVersion=${{ steps.gitversion.outputs.version }}.${{ github.run_number }}
run: dotnet build src/CsvHelper --configuration Release -p:AssemblyVersion=${{ steps.gitversion.outputs.major }}.0.0.0 -p:FileVersion=${{ steps.gitversion.outputs.version }}.${{ github.run_number }}
- name: Create NuGet Package
run: dotnet pack src/CsvHelper/CsvHelper.proj --no-restore --configuration Release -o output -p:PackageVersion=${{ steps.gitversion.outputs.version }}
run: dotnet pack src/CsvHelper --no-build --configuration Release -o output -p:PackageVersion=${{ steps.gitversion.outputs.version }}
- name: Display Output
run: dir output
- name: Publish NuGet Package
Expand Down

0 comments on commit 7076885

Please sign in to comment.