diff --git a/.github/workflows/04-helm-release-no-tests.yaml b/.github/workflows/04-helm-release-no-tests.yaml new file mode 100644 index 00000000..7a45cefa --- /dev/null +++ b/.github/workflows/04-helm-release-no-tests.yaml @@ -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 "$GITHUB_ACTOR@users.noreply.github.com" + + # - name: git checkout to new commit + # run: git checkout ${{ inputs.COMMIT_REF }} + + - name: Install Helm + uses: azure/setup-helm@v3.5 + # with: + # version: v3.4.0 + + - name: Run chart-releaser + uses: helm/chart-releaser-action@v1.4.1 + env: + charts_dir: "charts/kubescape-operator" + CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"