From fe50803ad9cbb8ef11f7385828f78f6666aa0f0a Mon Sep 17 00:00:00 2001 From: Jakub Nowosad <63680019+Ocayy@users.noreply.github.com> Date: Tue, 9 Dec 2025 00:46:48 +0100 Subject: [PATCH] update CI workflow to include artifact archiving step --- .gitea/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 374285c..c186fde 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,5 +6,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: build using gcc run: gcc -wall -werror main.c + + - name: Archive production artifacts + uses: actions/upload-artifact@v3 + with: + name: program + path: program