generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix GitHub actions annotations (#281)
Use a non-deprecated GitHub action for releasing
- Loading branch information
1 parent
78309b2
commit 548b384
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,12 +37,10 @@ jobs: | |
- name: create release | ||
if: ${{ steps.check_release.outputs.missing == 'true' }} | ||
id: create_release | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
uses: ncipollo/[email protected] | ||
with: | ||
tag_name: "${{ steps.read-version.outputs.tag }}" | ||
release_name: Changelog Enforcer ${{ steps.read-version.outputs.version }} | ||
tag: "${{ steps.read-version.outputs.tag }}" | ||
name: Changelog Enforcer ${{ steps.read-version.outputs.version }} | ||
body: ${{ steps.changelog_reader.outputs.changes }} | ||
draft: false | ||
prerelease: false | ||
|
@@ -53,4 +51,4 @@ jobs: | |
with: | ||
tag_name: "${{ steps.read-version.outputs.major_tag }}" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters