fix: rely on api rather than on k8s version (#3366) (#3367) #1918
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: Dev builds | |
on: | |
push: | |
branches: | |
- "dev-build/*" | |
- main | |
- "release-v[0-9]+" | |
- "release-v[0-9]+.[0-9]+" | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
config-file: ".markdown_link_check.json" | |
use-quiet-mode: yes | |
push-helm-chart: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Push dev helm chart | |
run: make push-helm-chart | |
integration-tests: | |
name: Integration Tests | |
uses: ./.github/workflows/workflow-integration-tests.yaml |