b8392c5513
Co-authored-by: small-hack-renovate[bot] <151926327+small-hack-renovate[bot]@users.noreply.github.com>
37 lines
847 B
YAML
37 lines
847 B
YAML
name: Release Chart
|
|
concurrency: chart_releaser
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'charts/pixelfed/**'
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Fetch history
|
|
run: git fetch --prune --unshallow
|
|
|
|
- name: Configure Git
|
|
run: |
|
|
git config user.name "$GITHUB_ACTOR"
|
|
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
|
|
|
# See https://github.com/helm/chart-releaser-action/issues/6
|
|
- name: Set up Helm
|
|
uses: azure/setup-helm@v3.5
|
|
with:
|
|
version: v3.14.3
|
|
|
|
- name: Run chart-releaser for pixelfed
|
|
uses: helm/chart-releaser-action@v1.7.0
|
|
env:
|
|
CR_GENERATE_RELEASE_NOTES: true
|
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|