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:
|
2023-04-22 13:37:14 +00:00
|
|
|
id-token: write
|
2022-10-03 14:21:12 +00:00
|
|
|
contents: write
|
2023-04-22 13:37:14 +00:00
|
|
|
packages: write
|
2022-10-03 14:21:12 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-11-02 10:40:45 +00:00
|
|
|
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
|
2023-01-09 06:07:36 +00:00
|
|
|
uses: helm/chart-releaser-action@v1.5.0
|
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
|
2023-04-17 07:00:46 +00:00
|
|
|
uses: mikefarah/yq@v4.33.3
|
2022-12-18 15:31:52 +00:00
|
|
|
id: app_version
|
|
|
|
with:
|
|
|
|
cmd: yq '.appVersion' charts/bitwarden-crd-operator/Chart.yaml
|
|
|
|
|
2023-04-22 13:15:53 +00:00
|
|
|
- name: "GHCR Login"
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
2023-04-22 13:37:14 +00:00
|
|
|
username: lerentis
|
2023-04-22 13:15:53 +00:00
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2023-04-22 13:25:10 +00:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
|
2023-04-22 13:15:53 +00:00
|
|
|
- name: "GHCR Build and Push"
|
|
|
|
id: docker_build
|
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
|
|
|
push: true
|
|
|
|
platforms: linux/amd64,linux/arm64
|
2023-04-22 13:22:35 +00:00
|
|
|
tags: ghcr.io/lerentis/bitwarden-crd-operator:${{ steps.app_version.outputs.result }}
|
2023-04-22 13:15:53 +00:00
|
|
|
|
2022-12-18 15:37:02 +00:00
|
|
|
- name: Create SBOM
|
2022-12-18 15:31:52 +00:00
|
|
|
uses: anchore/sbom-action@v0
|
|
|
|
with:
|
2023-04-22 13:22:35 +00:00
|
|
|
image: ghcr.io/lerentis/bitwarden-crd-operator:${{ steps.app_version.outputs.result }}
|
2022-12-18 15:37:02 +00:00
|
|
|
|
|
|
|
- name: Publish SBOM
|
|
|
|
uses: anchore/sbom-action/publish-sbom@v0
|
|
|
|
with:
|
2022-12-18 16:05:36 +00:00
|
|
|
sbom-artifact-match: ".*\\.spdx\\.json"
|
|
|
|
|
|
|
|
- name: Get Latest Tag
|
|
|
|
id: previoustag
|
|
|
|
uses: WyriHaximus/github-action-get-previous-tag@v1
|
|
|
|
|
2022-12-18 16:48:14 +00:00
|
|
|
- name: Download SBOM from github action
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: ${{ env.ANCHORE_SBOM_ACTION_PRIOR_ARTIFACT }}
|
|
|
|
|
2022-12-18 16:05:36 +00:00
|
|
|
- name: Add SBOM to release
|
|
|
|
uses: svenstaro/upload-release-action@v2
|
|
|
|
with:
|
|
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
file_glob: true
|
|
|
|
file: lerentis-bitwarden-crd-operator_*.spdx.json
|
|
|
|
tag: ${{ steps.previoustag.outputs.tag }}
|
2023-01-19 17:31:50 +00:00
|
|
|
overwrite: true
|