Skip to content

Commit

Permalink
reverted file list back to using shell command
Browse files Browse the repository at this point in the history
  • Loading branch information
danzuep committed Nov 20, 2023
1 parent e943d9c commit d00d1f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_deploy-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
dotnet-quality: 'ga'

- name: List files in the folder
run: Get-ChildItem -Path "./.nupkg" | Where-Object {$_.PSIsContainer -eq $false} | SELECT Name
# run: find . -name "*.csproj" -type f -exec echo {} \;
run: find . -name "*.nupkg" -type f -exec echo {} \;
# run: Get-ChildItem -Path "./.nupkg" | Where-Object {$_.PSIsContainer -eq $false} | SELECT Name

# https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry#authenticating-with-github_token-in-github-actions
# https://docs.github.com/en/packages/managing-github-packages-using-github-actions-workflows/publishing-and-installing-a-package-with-github-actions#publishing-a-package-using-an-action
Expand Down

0 comments on commit d00d1f6

Please sign in to comment.