0
0
mirror of https://github.com/sp-tarkov/build.git synced 2025-02-13 07:30:44 -05:00

Add build artifact archiving step

This commit is contained in:
Refringe 2024-03-04 21:12:10 -05:00
parent 95b1c544b2
commit 278eba2aec
No known key found for this signature in database
GPG Key ID: DA8524051241DD36

View File

@ -198,9 +198,16 @@ jobs:
run: | run: |
cd ./modules/project cd ./modules/project
dotnet build dotnet build
ls -la ls -la Build
shell: bash shell: bash
- name: Archive Build
uses: actions/upload-artifact@v3
with:
name: modules-build
path: ./modules/project/Build
overwrite: true
build-launcher: build-launcher:
needs: check-tag-exists needs: check-tag-exists
if: needs.check-tag-exists.outputs.proceed == 'true' if: needs.check-tag-exists.outputs.proceed == 'true'