Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DX-3288] ci: update version based on upgrade type #293

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 47 additions & 10 deletions .github/workflows/update-version.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
---
name: "Update version in package.json"
name: "Update SDK version"

on:
workflow_dispatch:
inputs:
version:
description: 'Version to update to (e.g. 1.20.0)'
upgrade_type:
type: choice
description: Upgrade Type
options:
- patch
- minor
# - major
nattb8 marked this conversation as resolved.
Show resolved Hide resolved
required: true
default: patch

env:
UPGRADE_TYPE: ${{ github.event.inputs.upgrade_type || 'patch' }}

jobs:
update:
Expand Down Expand Up @@ -37,26 +46,54 @@ jobs:
- name: Install jq
run: sudo apt-get install -y jq

- name: Replace version string
- name: Update Version in package.json
id: replace_version
run: |
FILE=./src/Packages/Passport/package.json
VERSION=${{ github.event.inputs.version }}
jq --arg version "$VERSION" '.version = $version' $FILE > tmp.$$.json && mv tmp.$$.json $FILE

CURRENT_VERSION=$(jq -r '.version' $FILE)
IFS='.' read -r MAJOR MINOR PATCH <<< "$CURRENT_VERSION"

# Increment version based on UPGRADE_TYPE
case "$UPGRADE_TYPE" in
major)
MAJOR=$((MAJOR + 1))
MINOR=0
PATCH=0
;;
minor)
MINOR=$((MINOR + 1))
PATCH=0
;;
patch)
PATCH=$((PATCH + 1))
;;
*)
echo "Invalid upgrade type: $UPGRADE_TYPE"
exit 1
;;
esac

NEW_VERSION="$MAJOR.$MINOR.$PATCH"
jq --arg version "$NEW_VERSION" '.version = $version' $FILE > tmp.$$.json && mv tmp.$$.json $FILE
echo "Updated version in package.json from $CURRENT_VERSION to $NEW_VERSION"

echo "version=$NEW_VERSION" >> "$GITHUB_OUTPUT"

- name: Replace engine sdk version string
- name: Update SDK Version in SdkVersionInfoHelpers.cs
id: replace_engine_sdk_version
run: |
FILE=./src/Packages/Passport/Runtime/Scripts/Private/Helpers/SdkVersionInfoHelpers.cs
VERSION=${{ github.event.inputs.version }}
sed -i -E "s/[0-9]+\.[0-9]+\.[0-9]+/$VERSION/g" $FILE
NEW_VERSION="${{ steps.replace_version.outputs.version }}"
sed -i -E "s/[0-9]+\.[0-9]+\.[0-9]+/$NEW_VERSION/g" $FILE
echo "Updated SDK version in SdkVersionInfoHelpers.cs to $NEW_VERSION"

- uses: gr2m/create-or-update-pull-request-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
title: "chore: update version"
body: "Update version in package.json"
branch: "chore/update-version-${{ github.event.inputs.version }}"
branch: "chore/update-version-${{ steps.replace_version.outputs.version }}"
commit-message: "chore: update version"
labels: release
Loading