From: hizumiaoba <56146205+hizumiaoba@users.noreply.github.com> Date: Thu, 10 Mar 2022 02:58:13 +0000 (+0900) Subject: ci: change release method to manually release X-Git-Tag: v4.0.0-Beta^2~9 X-Git-Url: http://git.osdn.net/view?p=delesterandomselector%2FDelesteRandomSelector.git;a=commitdiff_plain;h=3672480d37ff7c821409a03d7c0f7951898bd096 ci: change release method to manually release --- diff --git a/.github/workflows/autoReleaseDraft.yml b/.github/workflows/autoReleaseDraft.yml deleted file mode 100644 index 5299764..0000000 --- a/.github/workflows/autoReleaseDraft.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: -on: - push: - branches: - - master -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Bump version and push tag - id: tag_version - uses: mathieudutour/github-tag-action@v5.5 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - - name: Create a GitHub release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ steps.tag_version.outputs.new_tag }} - release_name: Release ${{ steps.tag_version.outputs.new_tag }} - body: ${{ steps.tag_version.outputs.changelog }}