Skip to content

Commit

Permalink
enhance build flow
Browse files Browse the repository at this point in the history
  • Loading branch information
isdaniel committed Jan 1, 2025
1 parent 1714f03 commit e2f06b2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 90 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/dotnet_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,18 @@ jobs:
run: dotnet test --no-build --verbosity normal --configuration Release
working-directory: src/tests/MessageWorkerPool.Test

- name: Package Release Artifacts
run: |
mkdir -p release
cp -r ./MessageWorkerPool/bin/Release/* release/
working-directory: ./src

- name: Upload Build Artifacts
uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: ./src/release/

- name: Pack NuGet Package
run: dotnet pack --no-build --configuration Release --output ./nupkg
working-directory: ./src
Expand Down
90 changes: 0 additions & 90 deletions .github/workflows/github_rel.yml

This file was deleted.

0 comments on commit e2f06b2

Please sign in to comment.