File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -111,6 +111,12 @@ jobs:
111111 curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v1.19.0/skaffold-linux-amd64
112112 chmod +x skaffold
113113 sudo mv skaffold /usr/local/bin
114+ - name : Setup Minikube
115+ uses : manusa/actions-setup-minikube@v2.3.0
116+ with :
117+ minikube version : ' v1.17.1'
118+ kubernetes version : ' v1.19.3'
119+ github token : ${{ secrets.GITHUB_TOKEN }}
114120 - name : Install cli requirements
115121 run : pip install -r cli/requirements.txt
116122 - name : Copy test config
Original file line number Diff line number Diff line change 77@click .command (help = 'Build images with Skaffold' )
88def build (** _kwargs ):
99 cmd = [
10- 'skaffold' , 'render ' ,
10+ 'skaffold' , 'build ' ,
1111 '-f' , 'deploy/skaffold.yml'
1212 ]
1313 run_command (cmd , cwd = BASE_DIR )
You can’t perform that action at this time.
0 commit comments