From d807ce88e0ae37eed16ebc1f78ed1eadd92bc672 Mon Sep 17 00:00:00 2001 From: Uladzislau Kamisarau Date: Fri, 21 Nov 2025 13:59:41 +0100 Subject: [PATCH] Artefact attemt 2 --- .gitea/workflows/ci.yml | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4a3c03c..b9bb075 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,10 +1,17 @@ name: First CI on: [push] -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: build using gcc - run: gcc -Wall -Werror main.c +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: build using gcc + 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