-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cdf2b0a
commit fca29ee
Showing
1 changed file
with
3 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,19 +60,12 @@ jobs: | |
git config --global user.name 'github-actions' | ||
git config --global user.email '[email protected]' | ||
- name: Determine branch name | ||
id: branch_name | ||
run: | | ||
branch_name=${GITHUB_REF#refs/heads/} | ||
echo "Branch name: $branch_name" | ||
echo "branch=$branch_name" >> $GITHUB_OUTPUT | ||
- name: Determine new version | ||
id: new_version | ||
run: | | ||
# Get the most recent tag in the format relayer-<branchname>-<version> | ||
current_tag=$(git tag --list "relayer-${{ steps.branch_name.outputs.branch }}-*" --sort=-v:refname | head -n 1 | ||
current_version=$(git tag --list "relayer-${{ steps.branch_name.outputs.branch }}-*" --sort=-v:refname | head -n 1 | sed -E 's/relayer-${{ steps.branch_name.outputs.branch }}-//') | ||
current_tag=$(git tag --list "relayer-*" --sort=-v:refname | head -n 1) | ||
current_version=$(git tag --list "relayer-*" --sort=-v:refname | head -n 1 | sed -E 's/relayer-//') | ||
echo "Current version: $current_version" | ||
# If there is no current version, set it to 1.0.0 | ||
|
@@ -89,7 +82,7 @@ jobs: | |
- name: Create new tag | ||
id: create_tag | ||
run: | | ||
tag_name="relayer-${{ steps.branch_name.outputs.branch }}-${{ steps.new_version.outputs.version }}" | ||
tag_name="relayer-${{ steps.new_version.outputs.version }}" | ||
echo "Tag name: $tag_name" | ||
echo "tag=$tag_name" >> $GITHUB_OUTPUT | ||
git tag $tag_name | ||
|