mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
[CI] Store Linux artifact
There is still no code to add it to release. In my opinion release creation must be removed from windows pipeline, but I cannot make it work
This commit is contained in:
parent
00202f938d
commit
403c9500bb
13
.github/workflows/Linux_build.yml
vendored
13
.github/workflows/Linux_build.yml
vendored
|
|
@ -75,3 +75,16 @@ jobs:
|
||||||
./xb setup
|
./xb setup
|
||||||
- name: Build
|
- name: Build
|
||||||
run: ./xb build --config=Release
|
run: ./xb build --config=Release
|
||||||
|
- name: Prepare artifacts
|
||||||
|
id: prepare_artifacts
|
||||||
|
run: |
|
||||||
|
mkdir artifacts
|
||||||
|
cp build/bin/Linux/Release/xenia_canary artifacts/xenia_canary
|
||||||
|
- name: Upload xenia canary artifacts
|
||||||
|
if: steps.prepare_artifacts.outcome == 'success'
|
||||||
|
id: upload_artifacts
|
||||||
|
uses: actions/upload-artifact@main
|
||||||
|
with:
|
||||||
|
name: xenia_canary_linux
|
||||||
|
path: artifacts/
|
||||||
|
if-no-files-found: error
|
||||||
Loading…
Reference in a new issue