Bump the patch group across 1 directory with 7 updates #103
Workflow file for this run
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: Helm Charts | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint: | |
# Deduplicate jobs from pull requests and branch pushes within the same repo. | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4.1.4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Helm | |
uses: azure/setup-helm@v4 | |
- name: Setup chart-testing | |
uses: helm/chart-testing-action@v2.6.1 | |
- name: Lint | |
run: > | |
ct | |
lint | |
--target-branch=${{ github.event.repository.default_branch }} | |
--validate-maintainers=false | |
build_publish: | |
needs: | |
- lint | |
# Deduplicate jobs from pull requests and branch pushes within the same repo. | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4.1.4 | |
- name: Retrieve chart dependencies | |
working-directory: charts/datasets | |
run: helm dependency update | |
- name: Package chart | |
working-directory: charts/datasets | |
run: helm package . | |
- name: Generate Image Name | |
run: echo IMAGE_REPOSITORY=oci://ghcr.io/$(echo "${{ github.repository }}-chart" | tr '[:upper:]' '[:lower:]' | tr '[_]' '[\-]') >> $GITHUB_ENV | |
- name: Log in to GitHub Docker Registry | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v3.1.0 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish chart | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
working-directory: charts/datasets | |
run: helm push $(ls datasets-*.tgz) ${{ env.IMAGE_REPOSITORY }} |