Skip to content

Commit

Permalink
Fix slashes
Browse files Browse the repository at this point in the history
Signed-off-by: lemccomb <117306942+lemccomb@users.noreply.github.com>
  • Loading branch information
lemccomb authored Aug 22, 2024
1 parent ade4d1d commit 1ece77c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ jobs:
dotnet test CoseHandler.Tests/CoseHandler.Tests.csproj
dotnet test CoseSignTool.Tests/CoseSignTool.Tests.csproj --verbosity detailed
# Build and publish the binaries to ./published.
- name: Publish outputs
run: |
dotnet publish --configuration Debug --self-contained true --output published/debug CoseSignTool/CoseSignTool.csproj
dotnet publish --configuration Release --self-contained true --output published/release CoseSignTool/CoseSignTool.csproj
# Self-contained is needed. Must use .csproj instead of .sln.
# List the contents of the working directory to make sure all the artifacts are there.
- name: List working directory
run: ${{ matrix.dir_command }}
Expand Down Expand Up @@ -273,8 +280,8 @@ jobs:
# Build and publish the binaries to ./published.
- name: Publish outputs
run: |
dotnet publish --configuration Debug --self-contained true --output published/debug CoseSignTool\CoseSignTool.csproj
dotnet publish --configuration Release --self-contained true --output published/release CoseSignTool\CoseSignTool.csproj
dotnet publish --configuration Debug --self-contained true --output published/debug CoseSignTool/CoseSignTool.csproj
dotnet publish --configuration Release --self-contained true --output published/release CoseSignTool/CoseSignTool.csproj
# Self-contained is needed. Must use .csproj instead of .sln.
# Copy the docs, license, and markdown files to the release folders.
Expand Down

0 comments on commit 1ece77c

Please sign in to comment.