Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ labels:
description: Boring, unpleasant, but easy tasks
- name: CI/CD
color: '#95CD57'
description: Continious integration & delivery
description: Continuous integration & delivery
- name: dependencies
color: '#0366D6'
description: Pull requests that update a dependency file
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Whenever a new version is released, corresponding tags are created / updated.
`latest` tag always points to the latest release (i.e. it's the same as using `main` branch).
There are also `$major` and `$major.$minor` tags pointing to the latest matching version (i.e. tag `1` always points to the latest `1.x` version, and tag `1.1` — to the latest `1.1.x` version).

To learn more the inputs / outpus look at the comprehensive test suit: [`main.test.ts`](__tests__/main.test.ts).
To learn more the inputs / outputs look at the comprehensive test suit: [`main.test.ts`](__tests__/main.test.ts).

To see this action… in action check its integration test: [`default.yml`](.github/workflows/default.yml).

Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ outputs:
build:
description: Version's build
build-parts:
description: Number of components in version's build. Individual сomponents are returned as `build-N` outputs, where an is an index from zero to `build-parts` - 1.
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a Cyrillic с

description: Number of components in version's build. Individual components are returned as `build-N` outputs, where an is an index from zero to `build-parts` - 1.
prerelease:
description: Version's pre-release
prerelease-parts:
description: Number of components in version's pre-release. Individual сomponents are returned as `prerelease-N` outputs, where an is an index from zero to `prerelease-parts` - 1.
description: Number of components in version's pre-release. Individual components are returned as `prerelease-N` outputs, where an is an index from zero to `prerelease-parts` - 1.
comparison-result:
description: If the compare-to was provided, this output will contain "<" if comes after the version, ">" if it preceeds it, and "=" if they are equal
description: If the compare-to was provided, this output will contain "<" if comes after the version, ">" if it precedes it, and "=" if they are equal
diff-result:
description: If the diff-to or compare-to were provided, this output will contain the diff result
satisfies:
Expand Down