Skip to content
This repository was archived by the owner on May 12, 2026. It is now read-only.

Commit a87363f

Browse files
Fix artifacts file path
1 parent db79214 commit a87363f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-artifacts.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
- name: Setup Environment
2222
uses: ./.github/actions/setup-env
2323

24-
- name: Build and Test
25-
run: dotnet pack .\src\NG.Mediator\NG.Mediator.csproj -c Release -o ".\artifacts"
24+
- name: Build Artifacts
25+
run: dotnet pack ./src/NG.Mediator/NG.Mediator.csproj -c Release -o "./artifacts"
2626

2727
- name: Artifacts
2828
uses: actions/upload-artifact@v4
2929
with:
3030
name: 'artifacts.zip'
31-
path: artifacts/**/*
31+
path: ./artifacts/*
3232

3333
#on:
3434
# push:

0 commit comments

Comments
 (0)