Skip to content

Build and publish Helm Chart #13

Build and publish Helm Chart

Build and publish Helm Chart #13

Workflow file for this run

name: Build and publish Helm Chart
on:
workflow_dispatch:
inputs:
deploy:
description: "deploy: false|true"
required: false
permissions:
contents: read
jobs:
helm-release:
name: Build Helm Chart
runs-on: buildjet-4vcpu-ubuntu-2204
if: |
(github.event_name == 'release' && github.event.action == 'published') ||
github.ref == 'refs/heads/master' || github.event_name == 'pull_request'
permissions:
contents: read
packages: write
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Package and Push Charts
uses: bsord/[email protected]
with:
useOCIRegistry: true
registry-url: oci://ghcr.io/fuellabs/helmcharts
username: ${{ github.repository_owner }}
access-token: ${{ secrets.GITHUB_TOKEN }}
force: true
chart-folder: ./helm/fuel-subgraph