Add Kubernetes deploy step 2
This commit is contained in:
parent
c7a83a7375
commit
4d54082276
1 changed files with 3 additions and 3 deletions
6
.github/workflows/deploy.yaml
vendored
6
.github/workflows/deploy.yaml
vendored
|
|
@ -26,9 +26,9 @@ jobs:
|
|||
|
||||
- name: Build and Push Docker Image
|
||||
run: |
|
||||
IMAGE_NAME=ghcr.io/${{ github.repository }}
|
||||
docker build -t $IMAGE_NAME:latest .
|
||||
docker push $IMAGE_NAME:latest
|
||||
IMAGE_NAME="ghcr.io/${{ github.repository }}"
|
||||
docker build -t "$IMAGE_NAME:latest" .
|
||||
docker push "$IMAGE_NAME:latest"
|
||||
|
||||
- name: Set up Kubeconfig
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Reference in a new issue