Skip to content

Commit b0f236c

Browse files
committed
prepare liqoctl for krew
1 parent 0c5fdae commit b0f236c

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/integration.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff 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]

0 commit comments

Comments
 (0)