Skip to content

Don't clobber existing helm chart in release! #2643

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

Merged
merged 3 commits into from
Jun 3, 2025
Merged
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
17 changes: 10 additions & 7 deletions .github/workflows/publish-helm-chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Helm Chart
name: Make Draft + Upload Helm Chart

on:
push:
Expand Down Expand Up @@ -30,7 +30,7 @@ jobs:
echo "version=$(cat version.txt)" >> "$GITHUB_ENV"

- name: Upload Chart To GitHub
uses: softprops/action-gh-release@v1
uses: ncipollo/release-action@v1
with:
body: |
## Deployment
Expand All @@ -50,9 +50,12 @@ jobs:

See [the development guide](https://docs.browsertrix.com/deploy/) for more info how to deploy Browsertrix.

files: |
.chart-out/browsertrix-v${{ env.version }}.tgz
.chart-out/btrix-proxies-0.1.0.tgz
tag_name: v${{ env.version }}
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: .chart-out/browsertrix-v${{ env.version }}.tgz,.chart-out/btrix-proxies-0.1.0.tgz
draft: true
fail_on_unmatched_files: true
generateReleaseNotes: true
name: Browsertrix v${{ env.version }}
skipIfReleaseExists: true
tag: v${{ env.version }}
updateOnlyUnreleased: true
Loading