Skip to content

Commit

Permalink
output artifacts to correct directory
Browse files Browse the repository at this point in the history
  • Loading branch information
nruffing committed Nov 22, 2023
1 parent 9ffda70 commit 8bbf8c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
dotnet-version: '8.x'
- name: dotnet pack
run: dotnet pack -c Release -o lib-pack
run: dotnet pack -c Release -o ${{github.workspace}}/lib-pack
- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
with:
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Build with dotnet
run: dotnet build --configuration Release
- name: dotnet publish
run: dotnet publish -c Release -o example-api-release
run: dotnet publish -c Release -o ${{github.workspace}}/example-api-release
- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/example_api_ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Build with dotnet
run: dotnet build --configuration Release
- name: dotnet publish
run: dotnet publish -c Release -o example-api-release
run: dotnet publish -c Release -o ${{github.workspace}}/example-api-release
- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 8bbf8c7

Please sign in to comment.