Skip to content

Commit

Permalink
Release chart version 0.0.3
Browse files Browse the repository at this point in the history
Signed-off-by: chandankumar4 <chandan.kr404@gmail.com>
  • Loading branch information
chandankumar4 committed May 27, 2024
1 parent 162fde9 commit 4779d5d
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 47 deletions.
41 changes: 38 additions & 3 deletions .github/workflows/verify.yaml → .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: verify
name: CI

on: pull_request
on:
pull_request:
push:
# tags:
# - '*'

jobs:
lint-test:
Expand Down Expand Up @@ -43,4 +47,35 @@ jobs:

- name: "Step 7: Run chart install"
if: steps.list-changed.outputs.changed == 'true'
run: ct install --target-branch ${{ github.event.repository.default_branch }}
run: ct install --target-branch ${{ github.event.repository.default_branch }}

release:
# if: ${{ startsWith(github.event.release.tag_name, '*') }}
needs:
- lint-test
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: "Step 1: Checkout"
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: "Step 2: Install Helm"
uses: azure/setup-helm@v4

- name: "Step 3: Run chart-releaser"
uses: helm/chart-releaser-action@v1.6.0
with:
charts_dir: charts
skip_existing: true
pages_branch: gh-pages
# config: config.yaml
env:
CR_TOKEN: "${{ secrets.ACCESS_TOKEN }}"
30 changes: 0 additions & 30 deletions .github/workflows/publish.yaml

This file was deleted.

4 changes: 3 additions & 1 deletion charts/numaflow/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.2
version: 0.0.3
maintainers:
- name: chandankumar4
12 changes: 0 additions & 12 deletions charts/numaflow/RELEASES.md

This file was deleted.

1 change: 0 additions & 1 deletion config.yaml

This file was deleted.

0 comments on commit 4779d5d

Please sign in to comment.