Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
echo path
Browse files Browse the repository at this point in the history
  • Loading branch information
sambaas committed Sep 12, 2023
1 parent 12e6fc3 commit 0ce06de
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@ jobs:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore TileBakeTool/TileBakeTool.csproj
- name: Build
run: dotnet build TileBakeTool/TileBakeTool.csproj --no-restore
- name: Build Release
run: |
dotnet build TileBakeTool/TileBakeTool.csproj --no-restore --configuration Release
echo "Build output path: $(pwd)/TileBakeTool/bin/Release/"
- name: Test
run: dotnet test TileBakeTool/TileBakeTool.csproj --no-build --verbosity normal
- name: Publish Build Artifacts
uses: actions/upload-artifact@v2
with:
name: build-artifacts
path: bin/Release/
path: $(pwd)bin/Release/

0 comments on commit 0ce06de

Please sign in to comment.