mirror of
https://github.com/we-promise/sure.git
synced 2026-04-17 11:04:14 +00:00
Updated the Helm release workflow to generate a nightly version and package the chart accordingly. Signed-off-by: Juan José Mata <juanjo.mata@gmail.com>
68 lines
1.7 KiB
YAML
68 lines
1.7 KiB
YAML
name: Release Helm Chart (Nightly)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'charts/**'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
pages: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
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
|
|
|
|
- name: Generate nightly version
|
|
id: version
|
|
run: |
|
|
# Generate version like: 0.0.0-nightly.20251213.173045
|
|
VERSION="0.0.0-nightly.$(date -u +'%Y%m%d.%H%M%S')"
|
|
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
echo "Generated version: $VERSION"
|
|
|
|
- name: Update Chart.yaml version
|
|
run: |
|
|
sed -i "s/^version:.*/version: ${{ steps.version.outputs.version }}/" charts/sure/Chart.yaml
|
|
cat charts/sure/Chart.yaml
|
|
|
|
- name: Package chart
|
|
run: |
|
|
mkdir -p .cr-release-packages
|
|
helm package charts/sure -d .cr-release-packages
|
|
|
|
- name: Checkout gh-pages
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: gh-pages
|
|
path: gh-pages
|
|
|
|
- name: Update index and push
|
|
run: |
|
|
# Copy packaged chart
|
|
cp .cr-release-packages/*.tgz gh-pages/
|
|
|
|
# Update index
|
|
helm repo index gh-pages --url https://we-promise.github.io/sure --merge gh-pages/index.yaml
|
|
|
|
# Push to gh-pages
|
|
cd gh-pages
|
|
git add .
|
|
git commit -m "Release nightly: ${{ steps.version.outputs.version }}"
|
|
git push
|