Publish binary on release #80
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Command Testing | |
on: | |
push: | |
branches: [ 'main' ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
install: | |
name: Run kuadrantctl install | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.20.x | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20.x | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Create k8s Kind Cluster | |
uses: helm/kind-action@v1.2.0 | |
with: | |
version: v0.20.0 | |
config: utils/kind-cluster.yaml | |
cluster_name: ${{ env.KIND_CLUSTER_NAME }} | |
wait: 120s | |
- name: Check cluster info | |
run: | | |
kubectl cluster-info dump | |
- name: Run make env-setup | |
run: | | |
make env-setup | |
- name: build | |
run: | | |
make install | |
- name: run command | |
run: | | |
bin/kuadrantctl install |