159 lines
4.9 KiB
YAML
159 lines
4.9 KiB
YAML
name: Unified Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Version to release (e.g., 0.1.25)'
|
|
required: true
|
|
type: string
|
|
release_type:
|
|
description: 'Release type'
|
|
required: true
|
|
default: 'patch'
|
|
type: choice
|
|
options:
|
|
- patch
|
|
- minor
|
|
- major
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Set up Helm
|
|
uses: azure/setup-helm@v4
|
|
|
|
- name: Configure Git
|
|
run: |
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
|
|
- name: Determine Version
|
|
id: version
|
|
run: |
|
|
if [ "${{ github.event.inputs.version }}" != "" ]; then
|
|
VERSION="${{ github.event.inputs.version }}"
|
|
else
|
|
# Auto-determine next version based on release type
|
|
CURRENT=$(grep '^version:' chart/Chart.yaml | awk '{print $2}')
|
|
MAJOR=$(echo $CURRENT | cut -d. -f1)
|
|
MINOR=$(echo $CURRENT | cut -d. -f2)
|
|
PATCH=$(echo $CURRENT | cut -d. -f3)
|
|
|
|
case "${{ github.event.inputs.release_type }}" in
|
|
major)
|
|
VERSION="$((MAJOR + 1)).0.0"
|
|
;;
|
|
minor)
|
|
VERSION="${MAJOR}.$((MINOR + 1)).0"
|
|
;;
|
|
patch)
|
|
VERSION="${MAJOR}.${MINOR}.$((PATCH + 1))"
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
echo "version=${VERSION}" >> $GITHUB_OUTPUT
|
|
echo "tag=v${VERSION}" >> $GITHUB_OUTPUT
|
|
echo "🚀 Releasing version ${VERSION}"
|
|
|
|
- name: Update Chart Version
|
|
run: |
|
|
sed -i "s/^version: .*/version: ${{ steps.version.outputs.version }}/" chart/Chart.yaml
|
|
git add chart/Chart.yaml
|
|
git diff --quiet --staged || git commit -m "chore: release version ${{ steps.version.outputs.version }}"
|
|
|
|
- name: Create and Push Tag
|
|
run: |
|
|
git tag -a "${{ steps.version.outputs.tag }}" -m "Release ${{ steps.version.outputs.tag }}"
|
|
git push origin main
|
|
git push origin "${{ steps.version.outputs.tag }}"
|
|
|
|
- name: Log in to GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build and Push Docker Image
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: |
|
|
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.tag }}
|
|
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.version }}
|
|
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
platforms: linux/amd64
|
|
|
|
- name: Package Helm Chart
|
|
run: |
|
|
helm registry login ghcr.io \
|
|
--username ${{ github.actor }} \
|
|
--password ${{ secrets.GITHUB_TOKEN }}
|
|
helm package chart/
|
|
helm push devcontainer-${{ steps.version.outputs.version }}.tgz oci://ghcr.io/cpfarhood/charts
|
|
|
|
- name: Generate Release Notes
|
|
id: notes
|
|
run: |
|
|
# Get commits since last tag
|
|
PREV_TAG=$(git describe --tags --abbrev=0 HEAD^ 2>/dev/null || echo "")
|
|
if [ -z "$PREV_TAG" ]; then
|
|
COMMITS=$(git log --pretty=format:"- %s (%h)" HEAD)
|
|
else
|
|
COMMITS=$(git log --pretty=format:"- %s (%h)" ${PREV_TAG}..HEAD)
|
|
fi
|
|
|
|
cat << EOF > release-notes.md
|
|
## 🚀 Release ${{ steps.version.outputs.version }}
|
|
|
|
### Changes
|
|
${COMMITS}
|
|
|
|
### Docker Image
|
|
\`\`\`bash
|
|
docker pull ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.tag }}
|
|
\`\`\`
|
|
|
|
### Helm Chart
|
|
\`\`\`bash
|
|
helm install devcontainer oci://ghcr.io/cpfarhood/charts/devcontainer --version ${{ steps.version.outputs.version }}
|
|
\`\`\`
|
|
EOF
|
|
|
|
echo "notes<<EOF" >> $GITHUB_OUTPUT
|
|
cat release-notes.md >> $GITHUB_OUTPUT
|
|
echo "EOF" >> $GITHUB_OUTPUT
|
|
|
|
- name: Create GitHub Release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ steps.version.outputs.tag }}
|
|
release_name: Release ${{ steps.version.outputs.tag }}
|
|
body: ${{ steps.notes.outputs.notes }}
|
|
draft: false
|
|
prerelease: false |