From a554a678d8ad1084e651b2f54ed2c00e4cfbc56e Mon Sep 17 00:00:00 2001 From: Dany LE Date: Mon, 22 Jul 2024 18:28:19 +0200 Subject: [PATCH] feat(ci): upload artifact on success --- .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 001c932..59887fc 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -13,4 +13,10 @@ jobs: ls ${{ gitea.workspace }} mkdir build BUILDDIR=$(realpath build) make install_dev main - - run: echo "Build status ${{ job.status }}." \ No newline at end of file + - name: Save artifact + uses: actions/upload-artifact@v3 + with: + name: build-AntOS + path: build/ + retention-days: 5 + - run: echo "Build status ${{ job.status }}."