mirror of
https://github.com/PaulHatch/semantic-version.git
synced 2025-12-29 13:58:17 +00:00
Fix version convention in docs
This commit is contained in:
parent
c7b61df97d
commit
02c6ec5e4f
1 changed files with 3 additions and 3 deletions
|
|
@ -18,7 +18,7 @@ message alters the type of change the next version will represent.
|
||||||
<!-- start usage -->
|
<!-- start usage -->
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- uses: paulhatch/semantic-version@v3.0.0
|
- uses: paulhatch/semantic-version@v3
|
||||||
with:
|
with:
|
||||||
# The branch to count commits on
|
# The branch to count commits on
|
||||||
branch: "master"
|
branch: "master"
|
||||||
|
|
@ -65,12 +65,12 @@ job referencing semantic version multiple times. For example:
|
||||||
```yaml
|
```yaml
|
||||||
- name: Application Version
|
- name: Application Version
|
||||||
id: version
|
id: version
|
||||||
uses: paulhatch/semantic-version@v3.0.0
|
uses: paulhatch/semantic-version@v3
|
||||||
with:
|
with:
|
||||||
change_path: "src/service"
|
change_path: "src/service"
|
||||||
- name: Database Version
|
- name: Database Version
|
||||||
id: db-version
|
id: db-version
|
||||||
uses: paulhatch/semantic-version@v3.0.0
|
uses: paulhatch/semantic-version@v3
|
||||||
with:
|
with:
|
||||||
major_pattern: "(MAJOR-DB)"
|
major_pattern: "(MAJOR-DB)"
|
||||||
minor_pattern: "(MINOR-DB)"
|
minor_pattern: "(MINOR-DB)"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue