From 87cf238e3e9d9e2b1ad2bbc24a18b2154f69a81a Mon Sep 17 00:00:00 2001 From: Brennan Beam <64556723+Brennan1994@users.noreply.github.com> Date: Tue, 27 Aug 2024 22:32:12 -0700 Subject: [PATCH] list all files --- .github/workflows/Release.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 82bb8ba..7eaf2c1 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -45,6 +45,11 @@ jobs: path: | "**/bin/Release/net8.0/win-x64/publish/" + - name: List all files + shell: pwsh + run: | + Get-ChildItem -Recurse -File | ForEach-Object { Write-Output $_.FullName } + build-linux: runs-on: ubuntu-latest @@ -80,4 +85,8 @@ jobs: name: linux-x64-${{ env.VERSION }} path: | "**/bin/Release/net8.0/linux-x64/publish/" + - name: List all files + shell: bash + run: | + find . -type f -print