Skip to content

Commit

Permalink
[Actions] Updated .github/actions/sleet/action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
credfeto committed Oct 22, 2024
1 parent 847e498 commit 72a71ca
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/actions/sleet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,23 @@ runs:
contents: ${{ inputs.SLEET_CONFIG }}
write_mode: overwrite

- name: "Sleet: Publish Packages to Nuget (Using Sleet)"
shell: bash
run: dotnet tool restore
env:
DOTNET_ROOT: "${{github.workspace}}/.dotnet/${{github.sha}}-${{github.run_id}}-${{github.run_number}}-${{github.run_attempt}}"
DOTNET_INSTALL_DIR: "${{github.workspace}}/.dotnet/${{github.sha}}-${{github.run_id}}-${{github.run_number}}-${{github.run_attempt}}"
DOTNET_MULTILEVEL_LOOKUP: "false"
DOTNET_NOLOGO: "true"
DOTNET_PRINT_TELEMETRY_MESSAGE: "false"
DOTNET_JitCollect64BitCounts: "1"
DOTNET_ReadyToRun: "0"
DOTNET_TC_QuickJitForLoops: "1"
DOTNET_TC_CallCountingDelayMs: "0"
DOTNET_TieredPGO: "1"
MSBUILDTERMINALLOGGER: "auto"
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages

- name: "Sleet: Publish Packages to Nuget (Using Sleet)"
shell: bash
run: dotnet sleet push "${{github.workspace}}/dist" --config sleet.json --source ${{inputs.SLEET_FEED}}
Expand Down

0 comments on commit 72a71ca

Please sign in to comment.