-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow specifying release-plz version (#21)
- Loading branch information
Showing
1 changed file
with
8 additions
and
3 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 |
---|---|---|
|
@@ -24,9 +24,13 @@ inputs: | |
description: "Path to the git cliff configuration file. Defaults to the `keep a changelog` configuration." | ||
required: false | ||
git_release: | ||
description: "Publish the GitHub release for the created git tag. (Default: `true`)" | ||
description: "Publish the GitHub release for the created git tag. (Default: `true`)." | ||
default: "true" | ||
required: false | ||
version: | ||
description: "Release-plz version to use. It must be an existing git tag name. For example `release-plz-v0.2.45`. (Default: `latest`)." | ||
default: "latest" | ||
required: false | ||
branding: | ||
icon: "zap" | ||
color: "yellow" | ||
|
@@ -37,9 +41,10 @@ runs: | |
shell: bash | ||
- name: Install release-plz | ||
uses: jaxxstorm/[email protected] | ||
with: # Grab the latest version | ||
with: | ||
repo: MarcoIeni/release-plz | ||
cache: enable # only works on custom release-plz tag | ||
tag: ${{ inputs.version }} | ||
cache: enable # cache only works on custom release-plz version | ||
- run: | | ||
if [[ "${{ inputs.no_changelog }}" != "false" ]] | ||
then | ||
|