initial pixelfed chart commit

This commit is contained in:
jessebot
2024-12-29 18:28:59 +01:00
commit 82408749a8
21 changed files with 1380 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
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.6.0
env:
CR_GENERATE_RELEASE_NOTES: true
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"