Update K8s Health Agent #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update K8s Health Agent | |
on: | |
workflow_dispatch: | |
jobs: | |
update-k8s-health-agent: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.CR_TOKEN }} | |
- name: Configure Git | |
run: | | |
git config user.name "syntassodev" | |
git config user.email "[email protected]" | |
- name: Update chart, template and crds | |
run: | | |
./scripts/update-k8s-health-agent | |
env: | |
GH_TOKEN: ${{ secrets.CR_TOKEN }} | |
- name: Commit and push changes | |
run: | | |
git add . | |
git commit -m "feat: update K8s Health Agent to the latest released version" | |
git push |