Skip to content

chore(chart): update app version #3

chore(chart): update app version

chore(chart): update app version #3

Workflow file for this run

name: Chart
on:
push:
tags:
- chart-*
jobs:
release:
permissions:
packages: write
contents: write
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Get chart version
run: |
CHART_VERSION=$(echo ${{ github.ref_name }} | grep -Eo "v.*")
echo "CHART_VERSION=${CHART_VERSION}" >> $GITHUB_ENV
- name: Push chart
uses: appany/[email protected]
with:
name: prompage-helm
repository: henrywhitaker3
tag: ${{ env.CHART_VERSION }}
path: chart
registry: ghcr.io
registry_username: ${{ github.actor }}
registry_password: ${{ secrets.GITHUB_TOKEN }}
update_dependencies: 'true'