diff --git a/dotnet/dotnet-pack-and-compare/action.yaml b/dotnet/dotnet-pack-and-compare/action.yaml index 309050d..dde83c3 100644 --- a/dotnet/dotnet-pack-and-compare/action.yaml +++ b/dotnet/dotnet-pack-and-compare/action.yaml @@ -55,8 +55,12 @@ outputs: runs: using: "composite" steps: + - run: echo "Own workspace." + shell: bash - name: "Own workspace." uses: act/common/utils/chown@master + - run: echo "Get the next version of the package." + shell: bash - name: "Get the next version of the package." uses: act/common/nuget/nuget-get-next-branched-version@master id: nuget @@ -66,6 +70,8 @@ runs: url: ${{ inputs.url }} organization: ${{ inputs.organization }} apiToken: ${{ inputs.password }} + - run: echo "Build .nupkg." + shell: bash - name: "Build .nupkg." uses: act/common/dotnet/dotnet-pack@master with: @@ -76,6 +82,8 @@ runs: outputDirectory: ${{ inputs.outputDirectory }} keepSymbols: ${{ inputs.keepSymbols }} additionalArgs: ${{ inputs.additionalArgs }} + - run: echo "Generate package outputs." + shell: bash - name: "Generate package outputs." id: package run: |