Skip to content

Commit 142e0c5

Browse files
committed
ci: upload appimage and binary separately
1 parent a8963ec commit 142e0c5

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/ci-linux-rust.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,19 @@ jobs:
5050
cp target/release/librepods-rust dist/librepods
5151
mv dist/LibrePods-x86_64.AppImage dist/librepods-x86_64.AppImage
5252
53-
- name: Upload build artifacts
53+
- name: Upload AppImage artifact
5454
if: "!startsWith(github.ref, 'refs/tags/linux-v')"
5555
uses: actions/upload-artifact@v4
5656
with:
57-
name: LibrePods-Build
58-
path: |
59-
linux-rust/dist/librepods
60-
linux-rust/dist/librepods-x86_64.AppImage
57+
name: librepods-x86_64.AppImage
58+
path: linux-rust/dist/librepods-x86_64.AppImage
59+
60+
- name: Upload binary artifact
61+
if: "!startsWith(github.ref, 'refs/tags/linux-v')"
62+
uses: actions/upload-artifact@v4
63+
with:
64+
name: librepods
65+
path: linux-rust/dist/librepods
6166

6267
- name: Vendor and create tarball
6368
if: startsWith(github.ref, 'refs/tags/linux-v')

0 commit comments

Comments
 (0)