From cbcf4e9be1d0d270fdff9a3470830a80622695e3 Mon Sep 17 00:00:00 2001 From: ktos Date: Fri, 22 Nov 2024 13:50:32 +0100 Subject: [PATCH] artifact --- .gitea/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 492ecef..ef5d06f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -3,8 +3,13 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + 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