Skip to content

boda sheer part 2

boda sheer part 2 #6

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- main
jobs:
deploy:
# needs: build
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up kubectl
uses: azure/setup-kubectl@v1
with:
version: v1.30.0
- name: Deploy to Kubernetes
run: |
kubectl apply -f kubernetes/deployment.yaml
kubectl apply -f kubernetes/service.yaml
shell: cmd