From cb46cfef10892e0a94dc9f68245acd6d612b3ca7 Mon Sep 17 00:00:00 2001 From: Liliia Hurko <130755897+lilyhurko@users.noreply.github.com> Date: Fri, 21 Nov 2025 13:40:16 +0100 Subject: [PATCH] =?UTF-8?q?Dodanie=20generowania=20artefakt=C3=B3w?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index eced514..4395332 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -7,5 +7,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: build using gcc - run: gcc -Wall -Werror main.c \ No newline at end of file + run: gcc -Wall -Werror main.c -o program + + - name: Archive production artifacts + uses: actions/upload-artifact@v3 + with: + name: program + path: program \ No newline at end of file