From 6c8758c61723d679ba68f0c7f65ef47a4155bbeb Mon Sep 17 00:00:00 2001 From: haaaniaaa <123700004+haaaniaaa@users.noreply.github.com> Date: Fri, 22 Nov 2024 13:35:57 +0100 Subject: [PATCH] artifacts --- .gitea/workflows/ci1.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/ci1.yml diff --git a/.gitea/workflows/ci1.yml b/.gitea/workflows/ci1.yml new file mode 100644 index 0000000..de37f86 --- /dev/null +++ b/.gitea/workflows/ci1.yml @@ -0,0 +1,15 @@ +name: Second CI +on: [push] + +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