Skip to content

Commit

Permalink
ci: adding artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
thegrannychaseroperation committed Apr 15, 2024
1 parent d56d74a commit cc52f39
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,16 @@ jobs:
matrix:
os:
[
{ name: windows-latest, build_path: out/Hydra-win32-x64 },
{ name: ubuntu-latest, build_path: out/Hydra-linux-x64 },
{
name: windows-latest,
build_path: out/Hydra-win32-x64,
artifact: Hydra-win32-x64,
},
{
name: ubuntu-latest,
build_path: out/Hydra-linux-x64,
artifact: Hydra-linux-x64,
},
]

runs-on: ${{ matrix.os.name }}
Expand Down Expand Up @@ -51,5 +59,5 @@ jobs:
- name: Create artifact
uses: actions/upload-artifact@v4
with:
name: Build
name: ${{ matrix.os.artifact }}
path: ${{ matrix.os.build_path }}

0 comments on commit cc52f39

Please sign in to comment.