Skip to content

Commit

Permalink
fix: remove package name from the version
Browse files Browse the repository at this point in the history
  • Loading branch information
clauBv23 committed Aug 7, 2024
1 parent 433ac74 commit cf1b944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-check-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: |
GITHUB_REF="${{ inputs.ref }}"
TAG=${GITHUB_REF##*/}
VERSION=$(echo "$TAG" | sed -E 's/-(sdk|subgraph|contracts|configs)//')
VERSION=$(echo "$TAG" | sed -E 's/-(sdk|subgraph|contracts|configs|artifacts)//')
PACKAGE=${TAG##*-}
echo "package=$PACKAGE" >> $GITHUB_OUTPUT
echo "version=$VERSION" >> $GITHUB_OUTPUT

0 comments on commit cf1b944

Please sign in to comment.