mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
ci: adding artifact name
This commit is contained in:
parent
d56d74a77b
commit
cc52f399f2
1 changed files with 11 additions and 3 deletions
14
.github/workflows/build.yml
vendored
14
.github/workflows/build.yml
vendored
|
@ -10,8 +10,16 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
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 }}
|
runs-on: ${{ matrix.os.name }}
|
||||||
|
@ -51,5 +59,5 @@ jobs:
|
||||||
- name: Create artifact
|
- name: Create artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Build
|
name: ${{ matrix.os.artifact }}
|
||||||
path: ${{ matrix.os.build_path }}
|
path: ${{ matrix.os.build_path }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue