diff --git a/.github/workflows/on-tag.yml b/.github/workflows/on-tag.yml new file mode 100644 index 0000000..74362be --- /dev/null +++ b/.github/workflows/on-tag.yml @@ -0,0 +1,21 @@ +name: Release Helm Chart +on: + push: + tags: + - 'v[0-9]+.[0-9]+.[0-9]+**' + branches: + - 'master' + + +jobs: + release-chart: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Publish locally in the workspace + run: | + echo "ref_type=${{ github.ref_type }}" + echo "ref_name=${{ github.ref_name }}" + echo "base_ref=${{ github.event.base_ref }}" + echo "ref=${{ github.ref }}" +