Update charts-release.yaml
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
This commit is contained in:
parent
d22e94b808
commit
45b347fd71
|
@ -78,6 +78,21 @@ jobs:
|
||||||
helm repo add prometheus https://prometheus-community.github.io/helm-charts
|
helm repo add prometheus https://prometheus-community.github.io/helm-charts
|
||||||
helm repo update
|
helm repo update
|
||||||
|
|
||||||
|
# Optional step if GPG signing is used
|
||||||
|
- name: Prepare GPG key
|
||||||
|
run: |
|
||||||
|
gpg_dir=.cr-gpg
|
||||||
|
mkdir "$gpg_dir"
|
||||||
|
keyring="$gpg_dir/secring.gpg"
|
||||||
|
base64 -d <<< "$GPG_KEYRING_BASE64" > "$keyring"
|
||||||
|
passphrase_file="$gpg_dir/passphrase"
|
||||||
|
echo "$GPG_PASSPHRASE" > "$passphrase_file"
|
||||||
|
echo "CR_PASSPHRASE_FILE=$passphrase_file" >> "$GITHUB_ENV"
|
||||||
|
echo "CR_KEYRING=$keyring" >> "$GITHUB_ENV"
|
||||||
|
env:
|
||||||
|
GPG_KEYRING_BASE64: "${{ secrets.GPG_KEYRING_BASE64 }}"
|
||||||
|
GPG_PASSPHRASE: "${{ secrets.GPG_PASSPHRASE }}"
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
|
||||||
with:
|
with:
|
||||||
|
@ -272,21 +287,6 @@ jobs:
|
||||||
git config user.name "TrueCharts-Bot"
|
git config user.name "TrueCharts-Bot"
|
||||||
git config user.email "bot@truecharts.org"
|
git config user.email "bot@truecharts.org"
|
||||||
|
|
||||||
# Optional step if GPG signing is used
|
|
||||||
- name: Prepare GPG key
|
|
||||||
run: |
|
|
||||||
gpg_dir=.cr-gpg
|
|
||||||
mkdir "$gpg_dir"
|
|
||||||
keyring="$gpg_dir/secring.gpg"
|
|
||||||
base64 -d <<< "$GPG_KEYRING_BASE64" > "$keyring"
|
|
||||||
passphrase_file="$gpg_dir/passphrase"
|
|
||||||
echo "$GPG_PASSPHRASE" > "$passphrase_file"
|
|
||||||
echo "CR_PASSPHRASE_FILE=$passphrase_file" >> "$GITHUB_ENV"
|
|
||||||
echo "CR_KEYRING=$keyring" >> "$GITHUB_ENV"
|
|
||||||
env:
|
|
||||||
GPG_KEYRING_BASE64: "${{ secrets.GPG_KEYRING_BASE64 }}"
|
|
||||||
GPG_PASSPHRASE: "${{ secrets.GPG_PASSPHRASE }}"
|
|
||||||
|
|
||||||
- name: Run chart-releaser for dependency apps
|
- name: Run chart-releaser for dependency apps
|
||||||
uses: helm/chart-releaser-action@be16258da8010256c6e82849661221415f031968 # v1.5.0
|
uses: helm/chart-releaser-action@be16258da8010256c6e82849661221415f031968 # v1.5.0
|
||||||
if: |
|
if: |
|
||||||
|
|
Loading…
Reference in New Issue