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

44 lines
994 B
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
2022-11-19 23:57:01 +00:00
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v5.0.0
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
2022-10-03 14:21:12 +00:00
- 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-11-19 23:57:01 +00:00
CR_SIGN: "true"
CR_KEY: "FF0C2839718CAF2E"