From f8bc1e2a8b72640f3997e8faafa8cffff3ce051b Mon Sep 17 00:00:00 2001 From: Carl Philipp Klemm Date: Tue, 16 Sep 2025 11:02:14 +0200 Subject: [PATCH] CI: upload package artifact --- .gitea/workflows/build.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index de4def4..ab84902 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -11,6 +11,12 @@ jobs: - name: Check out repository code uses: ischanx/checkout@8c80eac3058d03dc5301629e8f7d59ae255d6cc3 - name: Build - run: mkdir ${{ gitea.workspace }}/build; cd ${{ gitea.workspace }}/build; cmake ..; make - - name: List files in the build dir - run: ls + run: mkdir ${{ gitea.workspace }}/build; cd ${{ gitea.workspace }}/build; cmake -DCMAKE_BUILD_TYPE=Release ..; make + - name: Package + run: cd ${{ gitea.workspace }}/build; make package + - name: Upload artifacts + uses: https://gitea.com/actions/upload-artifact.git@v4.6.2 + with: + name: package-linux + path: eismultiplexer-linux-*.zip +