| 1234567891011121314151617181920212223 |
- ---
- name: Kubernetes Deploy
- on: # yamllint disable-line rule:truthy
- push:
- branches:
- - main
- env:
- KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }}
- jobs:
- deploy:
- runs-on: your-runner
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- - name: Deploy Manifest
- uses: actions-hub/kubectl@master
- with:
- args: apply -f your-manifest.yml
|