From e57ed3205ecda65edc56a22c9156b9d4a534f35c Mon Sep 17 00:00:00 2001 From: Brennan Beam <64556723+Brennan1994@users.noreply.github.com> Date: Tue, 27 Aug 2024 22:48:22 -0700 Subject: [PATCH] Cleanup --- .github/workflows/Release.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 7375c60..843e8de 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -41,13 +41,8 @@ jobs: - name: Upload Windows build artifact uses: actions/upload-artifact@v4 with: - name: windows-x64-${{ env.VERSION }} - path: D:/a/consequences/consequences/Consequences/bin/Release/net8.0/win-x64/native/USACE.HEC.Consequences.dll - - - name: List all files - shell: pwsh - run: | - Get-ChildItem -Recurse -File | ForEach-Object { Write-Output $_.FullName } + name: USACE.HEC.Consequences-${{ env.VERSION }}-windows-x64 + path: ./Consequences/bin/Release/net8.0/win-x64/native/ build-linux: runs-on: ubuntu-latest @@ -81,11 +76,6 @@ jobs: - name: Upload Linux build artifact uses: actions/upload-artifact@v4 with: - name: linux-x64-${{ env.VERSION }} + name: USACE.HEC.Consequences-${{ env.VERSION }}-linux-x64 path: ./Consequences/bin/Release/net8.0/linux-x64/native/ - - name: List all files - shell: bash - run: | - find . -type f -print -