Skip to content

Commit

Permalink
release workflow without tests (#428)
Browse files Browse the repository at this point in the history
Signed-off-by: Amir Malka <[email protected]>
  • Loading branch information
amirmalka authored Apr 17, 2024
1 parent 2bf21be commit e88dede
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/04-helm-release-no-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: 03-Helm chart release (Without E2E tests)

on:
workflow_dispatch:
inputs:
CHARTS_NAME:
type: choice
description: What chart do you want to release?
options:
- kubescape-operator

workflow_call:
inputs:
COMMIT_REF:
required: true
type: string
CHARTS_NAME:
required: true
type: string

jobs:
helm-chart-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# will change to: ref: release

- name: git status
run: git status

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
# - name: git checkout to new commit
# run: git checkout ${{ inputs.COMMIT_REF }}

- name: Install Helm
uses: azure/[email protected]
# with:
# version: v3.4.0

- name: Run chart-releaser
uses: helm/[email protected]
env:
charts_dir: "charts/kubescape-operator"
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit e88dede

Please sign in to comment.