Add oem as a deployment option in the chart #278
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: Verify Chart Images | |
on: | |
push: | |
paths: | |
- 'chart/**' | |
jobs: | |
verifyImages: | |
strategy: | |
matrix: | |
go-version: [1.21.x] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@master | |
- name: Get arkade | |
id: get_arkade | |
run: | | |
curl -sLS https://get.arkade.dev | sudo sh | |
- name: Verify chart images | |
id: verify_images | |
run: | | |
VERBOSE=true make verify-charts |