mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-02-14 09:59:57 +00:00
* chore(repo): add pre-commit Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * feat(helm): add schema Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * sec(release): release sboms and signatures in same repository as artefact Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> --------- Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com>
82 lines
3.0 KiB
YAML
82 lines
3.0 KiB
YAML
name: Publish charts
|
|
permissions: read-all
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
publish-helm:
|
|
# Skip this Release on forks
|
|
if: github.repository_owner == 'projectcapsule'
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- name: "Extract Version"
|
|
id: extract_version
|
|
run: |
|
|
GIT_TAG=${GITHUB_REF##*/}
|
|
VERSION=${GIT_TAG##*v}
|
|
echo "version=$(echo $VERSION)" >> $GITHUB_OUTPUT
|
|
- name: Publish Helm chart
|
|
uses: stefanprodan/helm-gh-pages@0ad2bb377311d61ac04ad9eb6f252fb68e207260 # v1.7.0
|
|
with:
|
|
token: "${{ secrets.HELM_CHARTS_PUSH_TOKEN }}"
|
|
linting: off
|
|
chart_version: ${{ steps.extract_version.outputs.version }}
|
|
app_version: ${{ steps.extract_version.outputs.version }}
|
|
charts_dir: charts
|
|
charts_url: https://${{ github.repository_owner }}.github.io/charts
|
|
owner: ${{ github.repository_owner }}
|
|
repository: charts
|
|
branch: gh-pages
|
|
commit_username: ${{ github.actor }}
|
|
publish-helm-oci:
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
contents: write
|
|
id-token: write
|
|
packages: write
|
|
outputs:
|
|
chart-digest: ${{ steps.helm_publish.outputs.digest }}
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- uses: sigstore/cosign-installer@c56c2d3e59e4281cc41dea2217323ba5694b171e # v3.8.0
|
|
- name: "Extract Version"
|
|
id: extract_version
|
|
run: |
|
|
GIT_TAG=${GITHUB_REF##*/}
|
|
VERSION=${GIT_TAG##*v}
|
|
echo "version=$(echo $VERSION)" >> $GITHUB_OUTPUT
|
|
- name: Helm | Publish
|
|
id: helm_publish
|
|
uses: peak-scale/github-actions/helm-oci-chart@a441cca016861c546ab7e065277e40ce41a3eb84 # v0.2.0
|
|
with:
|
|
registry: ghcr.io
|
|
repository: ${{ github.repository_owner }}/charts
|
|
name: "capsule"
|
|
version: ${{ steps.extract_version.outputs.version }}
|
|
app-version: ${{ steps.extract_version.outputs.version }}
|
|
registry-username: ${{ github.actor }}
|
|
registry-password: ${{ secrets.GITHUB_TOKEN }}
|
|
update-dependencies: 'true' # Defaults to false
|
|
sign-image: 'true'
|
|
signature-repository: ghcr.io/${{ github.repository_owner }}/charts/capsule
|
|
helm-provenance:
|
|
needs: publish-helm-oci
|
|
permissions:
|
|
id-token: write # To sign the provenance.
|
|
packages: write # To upload assets to release.
|
|
actions: read # To read the workflow path.
|
|
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_container_slsa3.yml@v2.0.0
|
|
with:
|
|
image: ghcr.io/${{ github.repository_owner }}/charts/capsule
|
|
digest: "${{ needs.publish-helm-oci.outputs.chart-digest }}"
|
|
registry-username: ${{ github.actor }}
|
|
secrets:
|
|
registry-password: ${{ secrets.GITHUB_TOKEN }}
|