chore: upgrade dependencies #30
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: Tests and Build Chart | |
on: | |
push: | |
branches: [ "*" ] | |
tags: [ "helm/*" ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
tests: | |
name: Helm Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
# fetching all tags is required for the Makefile to compute the right version | |
fetch-depth: 0 | |
- name: Run tests | |
run: git --no-pager diff --exit-code HEAD~1 HEAD helm/** || make helm-tests | |
release: | |
name: Release Helm Chart | |
runs-on: ubuntu-latest | |
if: startsWith(github.event.ref, 'refs/tags/helm/') | |
needs: | |
- tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
# fetching all tags is required for the Makefile to compute the right version | |
fetch-depth: 0 | |
- name: Release Helm Chart | |
env: | |
REPO_USER: ${{ secrets.REPOSITORIES_ACCESS_USER }} | |
REPO_PASSWORD: ${{ secrets.REPOSITORIES_ACCESS_TOKEN }} | |
run: make helm-release |