We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd24856 commit a299256Copy full SHA for a299256
cleanrepo/Dockerfile cleanrepo.Dockerfile
@@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/sdk:9.0 as build-env
2
# Copy everything and publish the release (publish implicitly restores and builds)
3
WORKDIR /app
4
COPY . ./
5
-RUN dotnet publish "CleanRepo.csproj" -c Release -o out --no-self-contained
+RUN dotnet publish "./cleanrepo/CleanRepo.csproj" -c Release -o out --no-self-contained
6
7
# Relayer the .NET SDK, anew with the build output
8
FROM mcr.microsoft.com/dotnet/sdk:9.0
cleanrepo/action.yml
@@ -20,7 +20,7 @@ inputs:
20
required: true
21
runs:
22
using: docker
23
- image: Dockerfile
+ image: ../cleanrepo/Dockerfile
24
args:
25
- '/Options:Function'
26
- ${{ inputs.function }}
0 commit comments