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 -