From 0de9997e389d56d58c081b7c9290d20d528563dc Mon Sep 17 00:00:00 2001 From: Jarko0 Date: Fri, 21 Nov 2025 11:56:28 +0100 Subject: [PATCH] artifacty --- .gitea/workflows/ci.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 492ecef..0c6988f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,10 +1,14 @@ 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 + 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