Skip to content

Commit

Permalink
Merge pull request #21 from reviewdog/migrate-actions-release
Browse files Browse the repository at this point in the history
ci: replace 'create-release action' with gh cli
  • Loading branch information
shogo82148 committed Jun 21, 2023
2 parents 8ffbae4 + 92248ec commit 20f0f2d
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,14 @@ jobs:
if_true: ${{ github.ref }}
if_false: ${{ steps.bumpr.outputs.next_version }}

# Create release.
- uses: actions/create-release@v1
if: "steps.tag.outputs.value != ''"
# Create release
- if: "steps.tag.outputs.value != ''"
env:
# This token is provided by Actions, you do not need to create your own token
TAG_NAME: ${{ steps.tag.outputs.value }}
CURRENT: ${{ steps.bumpr.outputs.current_version }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag.outputs.value }}
release_name: Release ${{ steps.tag.outputs.value }}
body: ${{ steps.bumpr.outputs.message }}
draft: false
prerelease: false
run: |
gh release create "${TAG_NAME}" -t "Release ${TAG_NAME/refs\/tags\//}" --generate-notes --notes-start-tag "${CURRENT}"
release-check:
if: github.event.action == 'labeled'
Expand Down

0 comments on commit 20f0f2d

Please sign in to comment.