@@ -77,38 +77,47 @@ jobs:
77
77
with :
78
78
name : ${{ matrix.runtime }}-package
79
79
path : ${{ matrix.runtime }}
80
- - name : Extract Linux package
80
+ - name : Package output files ${{ matrix.runtime }}
81
81
if : matrix.platform == 'linux'
82
82
run : |
83
- tar -xzf dmt-${{ matrix.runtime }}.tar.gz -C ${{ matrix.runtime }} .
84
- - name : Package output files
83
+ tar -czvf dmt-${{ inputs.release-tag }}-${{ matrix.runtime }}.tar.gz -C ${{ matrix.runtime }}/ .
84
+ - name : Package output files ${{ matrix.runtime }}
85
+ if : matrix.platform == 'windows'
86
+ run : |
87
+ zip -r dmt-${{ inputs.release-tag }}-${{ matrix.runtime }} ${{ matrix.runtime }}/*
88
+ - name : Package output files ${{ matrix.runtime }}
89
+ if : matrix.platform == 'mac' && matrix.runtime == 'osx-x64'
90
+ run : |
91
+ zip -r dmt-${{ inputs.release-tag }}-mac-x64 ${{ matrix.runtime }}/*
92
+ - name : Package output files ${{ matrix.runtime }}
93
+ if : matrix.platform == 'mac' && matrix.runtime == 'osx-arm64'
85
94
run : |
86
- zip -r dmt-${{ matrix.runtime }} ${{ matrix.runtime }}/*
87
- - name : Create GitHub release
95
+ zip -r dmt-${{ inputs.release-tag }}-mac-arm64 ${{ matrix.runtime }}/*
96
+ - name : Create GitHub release ${{ matrix.runtime }}
88
97
if : matrix.platform == 'windows'
89
98
uses : softprops/action-gh-release@v1
90
99
with :
91
100
tag_name : ${{ inputs.release-tag }}
92
101
files : |
93
102
dmt-${{ inputs.release-tag }}-${{ matrix.runtime }}.zip
94
- - name : Create GitHub release
103
+ - name : Create GitHub release ${{ matrix.runtime }}
95
104
if : matrix.platform == 'mac' && matrix.runtime == 'osx-x64'
96
105
uses : softprops/action-gh-release@v1
97
106
with :
98
107
tag_name : ${{ inputs.release-tag }}
99
108
files : |
100
109
dmt-${{ inputs.release-tag }}-mac-x64.zip
101
- - name : Create GitHub release
110
+ - name : Create GitHub release ${{ matrix.runtime }}
102
111
if : matrix.platform == 'mac' && matrix.runtime == 'osx-arm64'
103
112
uses : softprops/action-gh-release@v1
104
113
with :
105
114
tag_name : ${{ inputs.release-tag }}
106
115
files : |
107
116
dmt-${{ inputs.release-tag }}-mac-x64.zip
108
- - name : Create GitHub release
117
+ - name : Create GitHub release ${{ matrix.runtime }}
109
118
if : matrix.platform == 'linux'
110
119
uses : softprops/action-gh-release@v1
111
120
with :
112
121
tag_name : ${{ inputs.release-tag }}
113
122
files : |
114
- dmt-${{ inputs.release-tag }}.tar.gz
123
+ dmt-${{ inputs.release-tag }}-${{ matrix.runtime }} .tar.gz
0 commit comments