-
Notifications
You must be signed in to change notification settings - Fork 989
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from Infisical/upload-helm-chart-action
Upload helm chart action
- Loading branch information
Showing
2 changed files
with
4 additions
and
8 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 |
---|---|---|
|
@@ -8,19 +8,15 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install Helm | ||
uses: azure/setup-helm@v3 | ||
with: | ||
version: v3.10.0 | ||
- name: Build helm package | ||
run: cd helm-charts && helm package ./infisical | ||
uses: helm/[email protected] | ||
- name: Install python and Cloudsmith CLI | ||
- name: Install python | ||
uses: actions/setup-python@v4 | ||
- name: Install Cloudsmith CLI | ||
run: pip install --upgrade cloudsmith-cli | ||
- name: Push helm package to Cloudsmith | ||
- name: Build and push helm package to Cloudsmith | ||
run: cd helm-charts && sh upload-to-cloudsmith.sh | ||
env: | ||
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }} |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: goreleaser | ||
name: Go releaser | ||
|
||
on: | ||
push: | ||
|