actions-marketplace-validations/Tag Crate Version
Create tag with version of specified crate if it updated.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stalelast commit Apr 23, 2022
- License
- None
Pinned Snippet
uses: actions-marketplace-validations/pontem-network_tag-crate-version@4d600cc37aee604c7d1e82fa1ce9c80d680b1a2f # no releases — HEAD as of 2026-07-10tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| crate | Name of crate of interest. Default is root package. | no | — |
| pwd | Current working directory. | no | ${{ github.workspace }} |
| tag-to-version | Regex to determine version from tag. | no | /v?([0-9]+.[0-9]+.*)/ |
| version-to-tag | Temptate for the tag, where `$1` is a placeholder for the version. | no | v$1 |
| token | GITHUB_TOKEN | no | — |
Outputs
| name | description |
|---|---|
| crate | Crate name. |
| current | Current version of the crate. |
| previous | Previous version of the crate. Tetermined from previous tag. |
| tag | Current tag just created. |
| success | New tag was pushed successfully. |