diff --git a/.github/workflows/jtoon-deploy.yml b/.github/workflows/jtoon-deploy.yml index 867a1775..ebe80070 100644 --- a/.github/workflows/jtoon-deploy.yml +++ b/.github/workflows/jtoon-deploy.yml @@ -20,13 +20,13 @@ jobs: VERSION=$(grep -o -E "v[0-9]+\.[0-9]+\.[0-9]+" <<< "${{ github.event.head_commit.message }}") echo "VERSION=${VERSION}" >> $GITHUB_ENV - - name: Github release 생성 - uses: actions/create-release@v1 - with: - tag_name: ${{ env.VERSION }} - release_name: JTOON - ${{ env.VERSION }} + - name: Github release 자동생성 + uses: action-pack/github-release@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag: ${{ env.VERSION }} + title: JTOON - ${{ env.VERSION }} - name: JDK 17 설정 uses: actions/setup-java@v3