Skip to content

Commit

Permalink
Fix 1.3.2 feat(ci): switch from CircleCI to GitHub Actions for packag…
Browse files Browse the repository at this point in the history
…ing (#23)

* fix: correct deployment of NiFi Helm chart version 1.3.1

* Update Helm chart and index

* feat(ci): remove circle ci.

* feat(ci): add GitHub Action for Helm packaging

---------

Co-authored-by: GitHub Actions <[email protected]>
  • Loading branch information
namioto and actions-user authored Oct 2, 2024
1 parent dcea512 commit 614107a
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 190 deletions.
14 changes: 0 additions & 14 deletions .circleci/config.yml

This file was deleted.

39 changes: 39 additions & 0 deletions .github/workflows/package-chart.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Package and Release Helm Chart

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Helm
uses: azure/[email protected]

- name: Update Helm dependencies
run: helm dependency update ./

- name: Helm package
run: helm package ./ -d dist

- name: Update Helm repo index
run: |
helm repo index ./
- name: Configure Git
run: |
git config --local user.name "GitHub Actions"
git config --local user.email "[email protected]"
- name: Commit and Push changes
run: |
git add dist/
git add index.yaml
git commit -m "Update Helm chart and index"
git push origin
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Helm Charts dependencies
/charts/*.tgz
*.lock

.idea
.idea
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
apiVersion: v2
name: nifi
version: 1.3.1
version: 1.3.2
appVersion: 1.27.0
description: Apache NiFi is a software project from the Apache Software Foundation designed to automate the flow of data between software systems.
keywords:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Helm Chart for Apache NiFi

[![CircleCI](https://circleci.com/gh/cetic/helm-nifi.svg?style=svg)](https://circleci.com/gh/cetic/helm-nifi/tree/master) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![version](https://img.shields.io/github/tag/thefarmersfront/helm-nifi.svg?label=release) ![test](https://github.com/cetic/helm-nifi/actions/workflows/test.yml/badge.svg)
![Packing Status](https://github.com/thefarmersfront/helm-nifi/actions/workflows/package-chart.yml/badge.svg) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![version](https://img.shields.io/github/tag/thefarmersfront/helm-nifi.svg?label=release) ![test](https://github.com/cetic/helm-nifi/actions/workflows/test.yml/badge.svg)

## Introduction

Expand Down
Binary file added dist/nifi-1.3.2.tgz
Binary file not shown.
172 changes: 0 additions & 172 deletions index.yaml

This file was deleted.

0 comments on commit 614107a

Please sign in to comment.