generate-helm-repo #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: generate-helm-repo | |
on: | |
schedule: | |
- cron: '30 13 * * 3' | |
# push: | |
# branches: | |
# - main | |
# - master | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
generate-helm-repo: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/arvatoaws-labs/helm-pipeline/release:latest | |
permissions: | |
id-token: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Clone | |
run: | | |
mkdir -p stable | |
cd stable | |
for CHART in wordpress wordpress-bedrock argosinterface alertmanager-sns-forwarder lamp | |
do | |
git clone https://github.com/arvatoaws-labs/$CHART-helm-chart.git $CHART | |
done | |
- name: Package | |
run: | | |
for CHART in wordpress wordpress-bedrock argosinterface alertmanager-sns-forwarder lamp | |
do | |
helm3 package -u ./stable/$CHART | |
done | |
- name: Index | |
run: | | |
helm3 repo index . --url https://arvatoaws-labs.github.io/helm-repo/ --merge index.yaml | |
- name: Upload | |
run: | | |
git config --global --add safe.directory /__w/helm-repo/helm-repo | |
git config --global user.email "[email protected]" | |
git config --global user.name "Patrick Robinson" | |
git add *.tgz | |
git add index.yaml | |
git commit -m "Updated Helm Charts from GitHub Actions" | |
git push |