Skip to content

Perform Release

Perform Release #34

name: Perform Release
on:
workflow_dispatch
jobs:
perform-release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Change versions
run: |
# Get version from file
VERSION=$(grep -oE 'const Version = "[0-9]+\.[0-9]+\.[0-9]+-SNAPSHOT"' internal/project/project.go | grep -oE '[0-9]+\.[0-9]+\.[0-9]+-SNAPSHOT')
MAJOR=$(echo $VERSION | grep -oE '^[0-9]+')
MINOR=$(echo $VERSION | grep -oE '\.[0-9]+\.' | grep -oE '[0-9]+')
PATCH=$(echo $VERSION | grep -oE '[0-9]+' | tail -n 1)
# Remove the -SNAPSHOT suffix
NEW_VERSION="$MAJOR.$MINOR.$PATCH"
# Replace version in Golang project.go file
sed -i -E "s/const Version = \"[0-9]+\.[0-9]+\.[0-9]+-SNAPSHOT\"/const Version = \"$NEW_VERSION\"/" internal/project/project.go
# Replace version in Java pom.xml file
sed -i -E "1,10 s/ <version>[0-9]+\.[0-9]+\.[0-9]+-SNAPSHOT<\/version>/ <version>$NEW_VERSION<\/version>/" java/pom.xml
# Replace version in .NET Deckard.csproj file
sed -i -E "s/ <PackageVersion>[0-9]+\.[0-9]+\.[0-9]+-SNAPSHOT<\/PackageVersion>/ <PackageVersion>$NEW_VERSION<\/PackageVersion>/" csharp/Deckard.csproj
# Replace app version in Helm Chart.yaml file
sed -i -E "s/appVersion: \"[0-9]+\.[0-9]+\.[0-9]+\"/appVersion: \"$NEW_VERSION\"/" helm/Chart.yaml
# Replace chart version in Helm Chart.yaml file
sed -i -E "s/^version: [0-9]+\.[0-9]+\.[0-9]+/version: $NEW_VERSION/" helm/Chart.yaml
echo "deckard_new_version=$NEW_VERSION" >> $GITHUB_ENV
echo "deckard_old_version=$VERSION" >> $GITHUB_ENV
echo "deckard_major=$MAJOR" >> $GITHUB_ENV
echo "deckard_minor=$MINOR" >> $GITHUB_ENV
echo "deckard_patch=$PATCH" >> $GITHUB_ENV
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: 'build: ${{ env.deckard_new_version }} release'
file_pattern: 'internal/project/project.go java/pom.xml csharp/Deckard.csproj helm/Chart.yaml'
- name: Release
uses: softprops/action-gh-release@v2
with:
tag_name: v${{ env.deckard_new_version }}
generate_release_notes: true
token: ${{ secrets.RELEASE_PAT }}
env:
# https://github.com/orgs/community/discussions/25281
# https://github.com/orgs/community/discussions/16244
GITHUB_TOKEN: ${{ secrets.RELEASE_PAT }}
- name: Add -SNAPSHOT suffix
run: |
# Increase patch version and add -SNAPSHOT suffix
NEW_PATCH=$((${{ env.deckard_patch }} + 1))
NEW_SNAPSHOT_VERSION="${{ env.deckard_major }}.${{ env.deckard_minor }}.$NEW_PATCH-SNAPSHOT"
# Replace version in Golang project.go file
sed -i -E "s/const Version = \"[0-9]+\.[0-9]+\.[0-9]+\"/const Version = \"$NEW_SNAPSHOT_VERSION\"/" internal/project/project.go
# Replace version in Java pom.xml file
sed -i -E "1,10 s/ <version>[0-9]+\.[0-9]+\.[0-9]+<\/version>/ <version>$NEW_SNAPSHOT_VERSION<\/version>/" java/pom.xml
# Replace version in .NET Deckard.csproj file
sed -i -E "s/ <PackageVersion>[0-9]+\.[0-9]+\.[0-9]+<\/PackageVersion>/ <PackageVersion>$NEW_SNAPSHOT_VERSION<\/PackageVersion>/" csharp/Deckard.csproj
echo "deckard_new_snapshot_version=$NEW_SNAPSHOT_VERSION" >> $GITHUB_ENV
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: 'chore: ${{ env.deckard_new_snapshot_version }}'
file_pattern: 'internal/project/project.go java/pom.xml csharp/Deckard.csproj'