Skip to content

chore: update flood-testing chart version to 1.0.1 and adjust keywords #289

chore: update flood-testing chart version to 1.0.1 and adjust keywords

chore: update flood-testing chart version to 1.0.1 and adjust keywords #289

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
- unstable
jobs:
packages:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Git
run: |
git config --global user.email "devops@brightsec.com"
git config --global user.name "Bright Security"
- name: Change name to unstable
if: ${{ github.ref == 'refs/heads/unstable' }}
run: |
sed -i 's/brokencrystals/brokencrystals-unstable/g' ./charts/brokencrystals/Chart.yaml
sed -i 's/brkn/brkn-unstbl/g' ./charts/brokencrystals/Chart.yaml
- name: Change values to development
if: ${{ github.ref == 'refs/heads/unstable' }}
run: |
sed -i 's/^ main:.*/ main: unstable/' ./charts/brokencrystals/values.yaml
sed -i 's/^ client:.*/ client: unstable/' ./charts/brokencrystals/values.yaml
- name: Release packages main
uses: helm/chart-releaser-action@v1.6.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_SKIP_EXISTING: true