File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change 66 plugin : Robotone
77
88jobs :
9+
910 build :
1011 runs-on : ${{matrix.os}}
1112
5758 run : .\scripts\postbuild_windows.bat
5859 shell : cmd
5960
60- - name : Archive build artefacts
61+ - name : Upload build artefacts
6162 if : github.event_name == 'push'
6263 uses : actions/upload-artifact@master
6364 with :
6465 name : ${{env.plugin}}-${{matrix.os}}
6566 path : ./build/src/${{env.plugin}}/${{env.plugin}}_artefacts/Release
67+
68+ release :
69+ if : github.ref_type == 'tag'
70+ needs : build
71+ runs-on : ubuntu-latest
72+
73+ steps :
74+ - name : Download all build artefacts
75+ uses : actions/download-artifact@master
76+ with :
77+ path : ./artefacts
78+
79+ - name : Upload all artefacts to GitHub release
80+ uses : softprops/action-gh-release@master
81+ with :
82+ files : ./artefacts/*
You can’t perform that action at this time.
0 commit comments