-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(IGNORE) Track warnings generated during last publish workflow (#91)
- Loading branch information
1 parent
8a23765
commit 0c0ce0c
Showing
1 changed file
with
8 additions
and
0 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 |
---|---|---|
|
@@ -17,12 +17,16 @@ jobs: | |
|
||
- name: Get latest existing tag | ||
uses: actions-ecosystem/action-get-latest-tag@v1 | ||
## NEEDS UPDATE for set-output deprecation. | ||
## See https://github.com/actions-ecosystem/action-get-latest-tag/issues/25. | ||
id: get-latest-tag | ||
with: | ||
semver_only: true | ||
|
||
- name: Set new version | ||
uses: paulhatch/[email protected] | ||
## NEEDS UPDATE for set-output deprecation. | ||
## See https://github.com/PaulHatch/semantic-version/issues/66. | ||
id: set-version | ||
with: | ||
tag_prefix: "v" | ||
|
@@ -32,6 +36,8 @@ jobs: | |
|
||
- name: Generate changelog since last tag | ||
uses: mathiasvr/command-output@v1 | ||
## NEEDS UPDATE for set-output deprecation. | ||
## See https://github.com/mathiasvr/command-output/issues/4. | ||
id: changelog | ||
with: | ||
run: git log --format="* %s" ${{ steps.get-latest-tag.outputs.tag }}..HEAD | { grep -v "(IGNORE)" || :; } | ||
|
@@ -80,6 +86,8 @@ jobs: | |
|
||
- name: Commit Cargo.toml and changelog | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
## NEEDS UPDATE for set-output deprecation. | ||
## See https://github.com/stefanzweifel/git-auto-commit-action/issues/250. | ||
id: commit | ||
with: | ||
commit_message: Prepare ${{ steps.set-version.outputs.version }} release | ||
|