bitwarden-crd-operator/.github/workflows/release.yml

46 lines
1.0 KiB
YAML
Raw Normal View History

2022-10-03 14:21:12 +00:00
name: Release Charts
on:
2022-10-03 17:17:16 +00:00
push:
branches:
- main
2022-10-03 14:21:12 +00:00
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
2022-10-03 14:21:12 +00:00
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: v3.10.0
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.4.1
2022-10-03 17:17:16 +00:00
with:
charts_dir: charts
2022-10-03 14:21:12 +00:00
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
2022-12-18 15:31:52 +00:00
- name: Get app version from chart
uses: mikefarah/yq@v4.30.6
id: app_version
with:
cmd: yq '.appVersion' charts/bitwarden-crd-operator/Chart.yaml
- name: Publish SBOM
uses: anchore/sbom-action@v0
with:
image: lerentis/bitwarden-crd-operator:${{ steps.app_version.outputs.result }}