mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-03 00:33:49 +03:00
ci: adding artifact name
This commit is contained in:
parent
d56d74a77b
commit
cc52f399f2
14
.github/workflows/build.yml
vendored
14
.github/workflows/build.yml
vendored
@ -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 }}
|
||||
@ -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 }}
|
||||
|
Loading…
Reference in New Issue
Block a user