Skip to content
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
12 changes: 12 additions & 0 deletions .github/workflows/publish-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ env:

jobs:
build:
permissions:
packages: write
contents: write

runs-on: ubuntu-22.04

steps:
Expand Down Expand Up @@ -66,6 +70,14 @@ jobs:
- name: Set up Docker Buildx (for chartpress multi-arch builds)
uses: docker/setup-buildx-action@v3

- name: Log in to the container registry
if: steps.publishing.outputs.publishing
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Install chart publishing dependencies (chartpress)
run: |
pip install -r requirements.txt
Expand Down