Skip to content

shrutitirpude is learning GitHub Actions - 4f8ad40c9797a7a9ee6a22e4d400f90f519383f5 #1

shrutitirpude is learning GitHub Actions - 4f8ad40c9797a7a9ee6a22e4d400f90f519383f5

shrutitirpude is learning GitHub Actions - 4f8ad40c9797a7a9ee6a22e4d400f90f519383f5 #1

Workflow file for this run

---
name: Deploy
run-name: ${{ github.actor }} is learning GitHub Actions - ${{ github.sha }}
on:
push:
branches:
- main
- release/*
pull_request:
branches:
- main
env:
KUBE_CONFIG: ${{ secrets.KUBECONFIG }}
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get deployments
uses: actions-hub/kubectl@master
with:
args: get deployment
- name: Deploy yml
uses: actions-hub/kubectl@master
with:
args: apply -f kubedeploy.yml
- name: Get deployments
uses: actions-hub/kubectl@master
with:
args: get deployment