Skip to content

Commit

Permalink
Workaround for dotnet/sdk#11432
Browse files Browse the repository at this point in the history
  • Loading branch information
credfeto committed Oct 22, 2024
1 parent 6cf70b2 commit b76d778
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/actions/build-tools/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,18 @@ runs:
using: "composite"
steps:

# Workaround for https://github.com/dotnet/sdk/issues/11432
- name: "Re-map users nuget package feed to temp folder"
shell: bash
working-directory: ${{ github.workspace }}
run: |
[ -d "$HOME/.nuget" ] || mkdir "$HOME/.nuget
rm -fr "$HOME/.nuget/packages"
ln -sf "$HOME/.nuget/packages" "${{env.NUGET_PACKAGES}}"
ls -la "$HOME/.nuget/packages"
env:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages

- name: "Determine dotnet version"
uses: credfeto/[email protected]
with:
Expand Down

0 comments on commit b76d778

Please sign in to comment.