Modify ci to archive artifacts
All checks were successful
First CI / build (push) Successful in 11s

This commit is contained in:
Anton Ovod
2025-11-20 12:42:57 +01:00
parent 8aa348d636
commit b0fe8d2862

View File

@@ -5,6 +5,11 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- name: build using gcc - name: build using gcc
run: gcc -Wall -Werror main.c run: gcc -Wall -Werror main.c -o program
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: program
path: program