We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a1681f commit 73cc808Copy full SHA for 73cc808
2 files changed
.github/workflows/dotnet_tool_build.yml
@@ -20,7 +20,7 @@ jobs:
20
uses: devcontainers/ci@v0.3
21
with:
22
runCmd: |
23
- dotnet cake --target Pack-DotNetTool --version ${{ inputs.version }}
+ dotnet cake --target Pack-DotNetTool --package-version ${{ inputs.version }}
24
25
- name: Publish to NuGet (optional)
26
run: dotnet nuget push ./artifacts/nupkgs/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
src/BuslyCLI.Console/Dockerfile
@@ -2,6 +2,8 @@
2
FROM mcr.microsoft.com/dotnet/sdk:10.0.100 AS build
3
WORKDIR /src
4
5
+COPY Directory.Build.props ./
6
+
7
# Copy project file and restore dependencies (better layer caching)
8
COPY src/BuslyCLI.Console/BuslyCLI.Console.csproj ./BuslyCLI.Console/
9
RUN dotnet restore "BuslyCLI.Console/BuslyCLI.Console.csproj" \
0 commit comments