File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,20 @@ jobs:
2323 - name : Build
2424 run : cmake --build ${{github.workspace}}/csharp-api/build --config ${{env.BUILD_TYPE}} --target ALL_BUILD
2525
26- - name : Compress release
26+ - name : Prepare release
2727 run : |
2828 pip install -r ${{github.workspace}}/csharp-api/requirements.txt
2929 python ${{github.workspace}}/csharp-api/make_symlinks.py --gamedir="${{github.workspace}}/csharp-api" --bindir="${{github.workspace}}/csharp-api/build/bin" --just_copy=Tru
3030
31+ - name : Compress release
32+ run : |
33+ 7z a ${{github.workspace}}/${{matrix.target}}.zip ${{github.workspace}}/csharp-api/reframework/*
34+
3135 - name : Upload artifacts
3236 uses : actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
3337 with :
3438 name : ${{matrix.target}}
35- path : ${{github.workspace}}/csharp-api/reframework/
39+ path : ${{github.workspace}}/${{matrix.target}}.zip
3640 if-no-files-found : error
3741
3842 dev-release :
7579
7680 nightly-push :
7781 runs-on : windows-latest
78- needs : dev-release
82+ needs : [ dev-release, csharp-release]
7983 if : github.ref == 'refs/heads/master'
8084 steps :
8185 - name : Checkout
You can’t perform that action at this time.
0 commit comments