mirror of
https://github.com/Infisical/infisical.git
synced 2025-08-05 07:30:33 +00:00
Combine image release with helm release so that one happens after the other. This will help reduce manual work.
22 lines
641 B
YAML
22 lines
641 B
YAML
name: Release Infisical Core Helm chart
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Install Helm
|
|
uses: azure/setup-helm@v3
|
|
with:
|
|
version: v3.10.0
|
|
- name: Install python
|
|
uses: actions/setup-python@v4
|
|
- name: Install Cloudsmith CLI
|
|
run: pip install --upgrade cloudsmith-cli
|
|
- name: Build and push helm package to Cloudsmith
|
|
run: cd helm-charts && sh upload-infisical-core-helm-cloudsmith.sh
|
|
env:
|
|
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }} |