Skip to content

Commit

Permalink
remove round brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
claravanstaden committed Jul 4, 2024
1 parent 9f34700 commit 6d7e500
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-relayer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: |
branch_name=${GITHUB_REF#refs/heads/}
echo "Branch name: $branch_name"
echo "branch=$(branch_name)" >> $GITHUB_OUTPUT
echo "branch=$branch_name" >> $GITHUB_OUTPUT
- name: Determine new version
id: new_version
Expand All @@ -78,14 +78,14 @@ jobs:
fi
echo "New version: $new_version"
echo "version=$(new_version)" >> $GITHUB_OUTPUT
echo "version=$new_version" >> $GITHUB_OUTPUT
- name: Create new tag
id: create_tag
run: |
tag_name="relayer-${{ steps.branch_name.outputs.branch }}-${{ steps.new_version.outputs.version }}"
echo "Tag name: $tag_name"
echo "tag=$(tag_name)" >> $GITHUB_OUTPUT
echo "tag=$tag_name" >> $GITHUB_OUTPUT
git tag $tag_name
#- name: Push new tag
Expand Down

0 comments on commit 6d7e500

Please sign in to comment.