File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -222,12 +222,25 @@ jobs:
222222 GOOS : ${{ matrix.goos }}
223223 GOARCH : ${{ matrix.goarch }}
224224
225- - uses : actions/upload-artifact@v2
225+ - name : Create Archives
226+ run : |
227+ cp liqoctl-${{ matrix.goos }}-${{ matrix.goarch }} kubectl-liqo
228+ tar -czvf liqoctl-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz kubectl-liqo
229+
230+ - name : Upload Liqoctl
231+ uses : actions/upload-artifact@v2
226232 with :
227233 name : liqoctl-${{ matrix.goos }}-${{ matrix.goarch }}
228234 path : ./liqoctl-${{ matrix.goos }}-${{ matrix.goarch }}
229235 retention-days : 1
230236
237+ - name : Upload Liqoctl Archive
238+ uses : actions/upload-artifact@v2
239+ with :
240+ name : liqoctl-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz
241+ path : ./liqoctl-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz
242+ retention-days : 1
243+
231244 release :
232245 runs-on : ubuntu-latest
233246 needs : [build, configure, liqoctl]
You can’t perform that action at this time.
0 commit comments