Bump the minor group across 1 directory with 5 updates #90
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/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup Helm | |
uses: azure/[email protected] | |
- name: Setup chart-testing | |
uses: helm/[email protected] | |
- 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/[email protected] | |
- name: Retrieve chart dependencies | |
working-directory: charts/sessions | |
run: helm dependency update | |
- name: Package chart | |
working-directory: charts/sessions | |
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/[email protected] | |
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/sessions | |
run: helm push $(ls sessions-*.tgz) ${{ env.IMAGE_REPOSITORY }} |