Skip to content

Commit 06979b8

Browse files
committed
chore: fix extract tags script [skip ci]
1 parent e24ad5d commit 06979b8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
3939
GH_TOKEN: ${{ secrets.VERSION_BUMP_TOKEN }}
4040
- name: Extract latest SDK tag
41+
id: extract_tags
4142
run: |
4243
GENERATED_SDK_TAG=$(git describe --match "stream-chat-react-native-core@*" --abbrev=0 --tags)
4344
PARSED_SDK_TAG=$(echo "$GENERATED_SDK_TAG" | sed -e 's/stream-chat-react-native-core@//g')
@@ -47,8 +48,8 @@ jobs:
4748
uses: meeDamian/[email protected]
4849
with:
4950
token: ${{ secrets.VERSION_BUMP_TOKEN }}
50-
tag: ${{ steps.generate_changelog.outputs.tag }}
51-
name: ${{ steps.generate_changelog.outputs.newtag }}
51+
tag: ${{ steps.extract_tags.outputs.tag }}
52+
name: ${{ steps.extract_tags.outputs.newtag }}
5253
- name: Merge back changes
5354
run: |
5455
git checkout develop

0 commit comments

Comments
 (0)