Skip to content

Commit

Permalink
Update cd-pipeline.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
JimGeersinga authored Jul 9, 2024
1 parent 89fd46f commit bb539cb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/cd-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ jobs:
dotnet-version: '8.0.x'

- name: Pack
run: dotnet pack ${{ matrix.project }} -c Release -o ./nupkg
run: dotnet pack ${{ matrix.project }} -c Release /p:Version=${{ github.event.release.tag_name }} -o ./nupkg

- name: Upload NuGet Package as Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.project }}
path: ./nupkg/*.nupkg

- name: Publish to NuGet
env:
Expand Down

0 comments on commit bb539cb

Please sign in to comment.