Skip to content

Commit

Permalink
fixed workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Urpagin committed May 11, 2024
1 parent b6eab6e commit cec3ac3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ jobs:
- os: ubuntu-latest
name: "Linux x64"
asset_name: "MCRandomProxy-Linux"
executable_name: "MCRandomProxy" # Assuming the output name for Linux does not have .exe
- os: windows-latest
name: "Windows"
asset_name: "MCRandomProxy-Windows.exe"
executable_name: "MCRandomProxy.exe"

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -46,4 +48,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.asset_name }}
path: ./build/Release/MCRandomProxy.exe
path: ./build/Release/${{ matrix.executable_name }}

0 comments on commit cec3ac3

Please sign in to comment.