Aded debug logging.

This commit is contained in:
2025-07-01 14:13:23 -07:00
parent 9ffed504b7
commit dcacc1d84f

View File

@@ -55,8 +55,12 @@ outputs:
runs: runs:
using: "composite" using: "composite"
steps: steps:
- run: echo "Own workspace."
shell: bash
- name: "Own workspace." - name: "Own workspace."
uses: act/common/utils/chown@master 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." - name: "Get the next version of the package."
uses: act/common/nuget/nuget-get-next-branched-version@master uses: act/common/nuget/nuget-get-next-branched-version@master
id: nuget id: nuget
@@ -66,6 +70,8 @@ runs:
url: ${{ inputs.url }} url: ${{ inputs.url }}
organization: ${{ inputs.organization }} organization: ${{ inputs.organization }}
apiToken: ${{ inputs.password }} apiToken: ${{ inputs.password }}
- run: echo "Build .nupkg."
shell: bash
- name: "Build .nupkg." - name: "Build .nupkg."
uses: act/common/dotnet/dotnet-pack@master uses: act/common/dotnet/dotnet-pack@master
with: with:
@@ -76,6 +82,8 @@ runs:
outputDirectory: ${{ inputs.outputDirectory }} outputDirectory: ${{ inputs.outputDirectory }}
keepSymbols: ${{ inputs.keepSymbols }} keepSymbols: ${{ inputs.keepSymbols }}
additionalArgs: ${{ inputs.additionalArgs }} additionalArgs: ${{ inputs.additionalArgs }}
- run: echo "Generate package outputs."
shell: bash
- name: "Generate package outputs." - name: "Generate package outputs."
id: package id: package
run: | run: |