Skip to content

Commit cf535eb

Browse files
authored
Release 0.0.1
* Chore: 커밋 메세지에 따른 배포 스크립트 수정 - 기존 Release 0.0.0만 수용했던 것에서 Release 0.0.0 (#22) 방식도 수용 * Chore: 기존 배포스크립트로 revert * fix: 배포스크립 수정(#59)의 Error
1 parent ca4eb7f commit cf535eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/maven-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- name: Extract version information
1313
run: |
14-
VERSION=$(echo "${{ github.event.head_commit.message }}" | grep -oE 'Release [0-9]+\.[0-9]+\.[0-9]+' | sed 's/Release //')
14+
VERSION=$(echo "${{ github.event.head_commit.message }}" | grep -oE 'Release [0-9]+\.[0-9]+\.[0-9]+' | head -n 1 | sed 's/Release //')
1515
if [[ -n "$VERSION" ]]; then
1616
echo "VERSION=$VERSION" >> $GITHUB_ENV
1717
fi

0 commit comments

Comments
 (0)