Skip to content

Commit

Permalink
fix release not working
Browse files Browse the repository at this point in the history
  • Loading branch information
claravanstaden committed Oct 7, 2024
1 parent cdf2b0a commit fca29ee
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/release-relayer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit fca29ee

Please sign in to comment.