File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -87,21 +87,36 @@ jobs:
87
87
- uses : actions/download-artifact@v1
88
88
with :
89
89
name : ffmpeg-linux-x86_64
90
+ path : artifacts/
90
91
- uses : actions/download-artifact@v1
91
92
with :
92
93
name : ffmpeg-linux-i686
94
+ path : artifacts/
93
95
- uses : actions/download-artifact@v1
94
96
with :
95
97
name : ffmpeg-windows-x86_64
98
+ path : artifacts/
96
99
- uses : actions/download-artifact@v1
97
100
with :
98
101
name : ffmpeg-windows-i686
102
+ path : artifacts/
99
103
- uses : actions/download-artifact@v1
100
104
with :
101
105
name : ffmpeg-macos-x86_64
106
+ path : artifacts/
107
+ - name : Make tarballs
108
+ run : |
109
+ mkdir artifacts/release/
110
+ cd artifacts/
111
+ dirs=$(find . -name 'ffmpeg-*' -type d)
112
+ for dir in $dirs
113
+ do
114
+ name=$(basename $dir)
115
+ tar cvf release/$name.tar.gz $dir
116
+ done
102
117
- name : Release
103
118
uses : softprops/action-gh-release@v1
104
119
with :
105
- files : artifacts/*
120
+ files : artifacts/release/ *
106
121
env :
107
122
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments