Skip to content

Commit

Permalink
Merge pull request #29 from conductor-sdk/fix-pipeline
Browse files Browse the repository at this point in the history
Fixed release steps
  • Loading branch information
gardusig authored Dec 3, 2022
2 parents 3b1fcf7 + fbf74a9 commit 9f66266
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS raw_base_image
RUN mkdir /package
COPY /Conductor /package/Conductor
COPY /README.md /package/Conductor/README.md
WORKDIR /package/Conductor

FROM raw_base_image AS linter
Expand All @@ -23,9 +22,9 @@ COPY /Tests /package/Tests
WORKDIR /package/Tests
RUN dotnet test -l "console;verbosity=normal"

FROM raw_base_image as pack_release
FROM build as pack_release
ARG SDK_VERSION
RUN dotnet pack "*.csproj" \
RUN dotnet pack "conductor-csharp.csproj" \
-o /build \
--include-symbols \
--include-source \
Expand Down

0 comments on commit 9f66266

Please sign in to comment.