Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): update GitHub workflow and Helm config #122

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
- name: Deploy to GitHub Pages
if: env.has_release_label == 'true'
run: |
helm package . --destination charts/
helm repo index . --url https://getlago.github.io/charts
helm package . --destination artifacts/
helm repo index . --url https://charts.getlago.com/
git add .
git commit -m "Update Helm repo index after release"
git pull
Expand All @@ -73,12 +73,12 @@ jobs:

- name: Create GitHub Release
if: env.has_release_label == 'true'
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: softprops/action-gh-release@v2
with:
tag_name: "v${{ env.version }}"
release_name: "Release v${{ env.version }}"
body: "Release of version v${{ env.version }}"
name: "Release v${{ env.version }}"
generate_release_notes: true
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 2 additions & 1 deletion .helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
.git/
.gitignore
LICENSE
README.md
README.md
artifacts/
7 changes: 5 additions & 2 deletions values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
version: 1.15.0

# apiUrl: mydomain.dev
# frontUrl: mydomain.dev
# Required: Set the URLs for your API and Frontend services
# Replace these placeholders with the actual domain names.
apiUrl: "" # Example: https://api.mydomain.dev
frontUrl: "" # Example: https://app.mydomain.dev


# Only for Development, Staging or PoC, you should use a managed Redis instance for Production
redis:
Expand Down
Loading