ci: make helm release manual (#14317)

pull/14281/head^2
Trevor Whitney 1 year ago committed by GitHub
parent 4d6992982d
commit c1ee65ffc3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 11
      .github/workflows/helm-ci.yml
  2. 7
      .github/workflows/helm-release.yaml

@ -4,6 +4,7 @@ on:
pull_request:
paths:
- "production/helm/**"
- ".github/workflows/helm-ci.yml"
env:
CT_CONFIGFILE: production/helm/ct.yaml
@ -27,14 +28,6 @@ jobs:
- name: Lint Yaml
run: make helm-lint
- id: "get_github_app_token"
name: "Get Github app token"
uses: "actions/create-github-app-token@v1"
with:
app-id: "${{ secrets.APP_ID }}"
owner: "${{ github.repository_owner }}"
private-key: "${{ secrets.APP_PRIVATE_KEY }}"
- name: Lint Code Base
uses: docker://github/super-linter:v3.12.0
env:
@ -45,7 +38,7 @@ jobs:
VALIDATE_YAML: false
VALIDATE_GO: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ steps.get_github_app_token.outputs.token }}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
call-test:
name: Test Helm Chart
runs-on: ubuntu-latest

@ -1,12 +1,7 @@
name: helm-release
on:
push:
branches:
- main
- helm-5.48
paths:
- 'production/helm/loki/Chart.yaml'
workflow_dispatch: # must be invoked manually
jobs:
call-update-helm-repo:

Loading…
Cancel
Save