Skip to content

Commit

Permalink
Add NOOP GitHub Actions workflow straight to main to allow testing ac…
Browse files Browse the repository at this point in the history
…tion in branch
  • Loading branch information
arrowplum committed Dec 3, 2024
1 parent b208464 commit 60ecd7f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build-chart-jfrog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Sign, Build, and Bundle

on:
workflow_dispatch:
inputs:
jfrog_project:
description: 'Name of the jfrog project to deploy the chart to'
required: true
default: 'ecosystem'
chart_name:
description: 'Name of the chart to build'
required: true
default: 'aerospike-vector-search'
repo_name:
description: 'Name of the jfrog repo to deploy the chart to'
required: true
default: 'ecosystem-helm-dev-local'
build_name:
description: 'Name of the build to create'
required: true
default: 'aerospike-vector-search-helm'
build_number:
description: 'Build number to use for the build metadata'
required: true
default: '0.7.0'
jobs:
build-chart:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

0 comments on commit 60ecd7f

Please sign in to comment.