Skip to content

Commit

Permalink
prepare liqoctl for krew
Browse files Browse the repository at this point in the history
  • Loading branch information
aleoli committed Jun 13, 2022
1 parent 0c5fdae commit b0f236c
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,12 +222,25 @@ jobs:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}

- uses: actions/upload-artifact@v2
- name: Create Archives
run: |
cp liqoctl-${{ matrix.goos }}-${{ matrix.goarch }} kubectl-liqo
tar -czvf liqoctl-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz kubectl-liqo
- name: Upload Liqoctl
uses: actions/upload-artifact@v2
with:
name: liqoctl-${{ matrix.goos }}-${{ matrix.goarch }}
path: ./liqoctl-${{ matrix.goos }}-${{ matrix.goarch }}
retention-days: 1

- name: Upload Liqoctl Archive
uses: actions/upload-artifact@v2
with:
name: liqoctl-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz
path: ./liqoctl-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz
retention-days: 1

release:
runs-on: ubuntu-latest
needs: [build, configure, liqoctl]
Expand Down

0 comments on commit b0f236c

Please sign in to comment.