File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change 5
5
name : Build & test
6
6
strategy :
7
7
matrix :
8
- os : [
9
- " ubuntu-18.04" ,
10
- " windows-2019" ,
11
- " macos-10.15"
12
- ]
8
+ include :
9
+ - platform : linux
10
+ os : " ubuntu-18.04"
11
+ - platform : windows
12
+ os : " windows-2019"
13
+ - platform : mac
14
+ os : " macos-10.15"
13
15
runs-on : ${{ matrix.os }}
14
16
steps :
15
17
- uses : actions/checkout@v2
43
45
44
46
- uses : actions/upload-artifact@v2
45
47
with :
46
- name : distributables
48
+ name : ${{ matrix.platform }}- distributables
47
49
path : dist/HttpToolkit-*
48
50
if-no-files-found : error
49
51
publish :
52
54
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
53
55
needs : build
54
56
steps :
55
- - name : Get our distributables
57
+ - name : Get all distributables
56
58
uses : actions/download-artifact@v2
57
- with :
58
- name : distributables
59
- path : built-distributables
60
59
61
60
- name : Create Release
62
61
id : create_release
76
75
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
77
76
with :
78
77
release_id : ${{ steps.create_release.outputs.id }}
79
- assets_path : ./built-distributables /
78
+ assets_path : ./* /
You can’t perform that action at this time.
0 commit comments