From 278eba2aec55694a1f0bd9db9ba44e8248464bca Mon Sep 17 00:00:00 2001 From: Refringe Date: Mon, 4 Mar 2024 21:12:10 -0500 Subject: [PATCH] Add build artifact archiving step --- .gitea/workflows/build.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index cd3c0bb..8b62664 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -198,9 +198,16 @@ jobs: run: | cd ./modules/project dotnet build - ls -la + ls -la Build shell: bash + - name: Archive Build + uses: actions/upload-artifact@v3 + with: + name: modules-build + path: ./modules/project/Build + overwrite: true + build-launcher: needs: check-tag-exists if: needs.check-tag-exists.outputs.proceed == 'true'