From 7e0a56f2ff7a8b1a82031530a223ab0a9d9b3df9 Mon Sep 17 00:00:00 2001 From: john Date: Fri, 21 Nov 2025 12:49:37 +0100 Subject: [PATCH] zad3 --- .gitea/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4201bca..e232eff 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,9 +1,15 @@ 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 \ No newline at end of file + run: gcc -Wall -Werror main.c + - name: Archive production artifacts + uses:actions/upload-artifacts@v3 + with: + name: program + path: program \ No newline at end of file