-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add NOOP GitHub Actions workflow straight to main to allow testing ac…
…tion in branch
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |