Update ghcr.io/home-assistant/home-assistant Docker tag to v2025.1.2 … #50
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
name: Home Assistant Release Chart | |
concurrency: chart_releaser | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'charts/home-assistant/**' | |
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 "[email protected]" | |
# See https://github.com/helm/chart-releaser-action/issues/6 | |
- name: Set up Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.14.3 | |
- name: Run chart-releaser for home-assistant | |
uses: helm/[email protected] | |
env: | |
CR_GENERATE_RELEASE_NOTES: true | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |