35 lines
905 B
Diff
35 lines
905 B
Diff
From 4606a4f01af766efb0ac9a8814bd9cf70c1d02a1 Mon Sep 17 00:00:00 2001
|
|
From: Christoph Reiter <reiter.christoph@gmail.com>
|
|
Date: Mon, 15 Mar 2021 08:54:00 +0100
|
|
Subject: [PATCH 24/N] CI: Upload the build artifacts
|
|
|
|
---
|
|
.github/workflows/build.yaml | 13 ++++++++++++-
|
|
1 file changed, 12 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
|
|
index c7ed476..ede8d53 100644
|
|
--- a/.github/workflows/build.yaml
|
|
+++ b/.github/workflows/build.yaml
|
|
@@ -21,4 +21,15 @@ jobs:
|
|
shell: msys2 {0}
|
|
run: |
|
|
./configure
|
|
- make -j8
|
|
\ No newline at end of file
|
|
+ make -j8
|
|
+
|
|
+ - name: Install
|
|
+ shell: msys2 {0}
|
|
+ run: |
|
|
+ make DESTDIR="$(pwd)"/_dest install
|
|
+
|
|
+ - name: Upload
|
|
+ uses: actions/upload-artifact@v2
|
|
+ with:
|
|
+ name: install
|
|
+ path: _dest/
|
|
--
|
|
2.31.1
|
|
|