Skip to content
Merged
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
4 changes: 4 additions & 0 deletions docs/samples/release.container.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ uses: health-informatics-uon/workflows/.github/workflows/semantic-release.yml@v1

Check the [releases](https://github.com/health-informatics-uon/workflows/releases) for available versions.

If you have not made an existing semantic versioning release (even manually), the workflow will default to release 1.0.0.

If you would like a pre-1.0.0 release (for example 0.0.1), you should make a release manually through Github, and then the workflow will continue your numbering.

## Languages

### Python
Expand Down
6 changes: 4 additions & 2 deletions docs/workflows/semantic-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,12 @@ module.exports = {
'@semantic-release/release-notes-generator',
'@semantic-release/exec',
'@semantic-release/github',
],
"initialVersion": "0.0.1"
]
};
```
If you have not made an existing semantic versioning release (even manually), the workflow will default to release 1.0.0.

If you would like a pre-1.0.0 release (for example 0.0.1), you should make a release manually through Github, and then the workflow will continue your numbering.

## Python Configuration

Expand Down
3 changes: 1 addition & 2 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ module.exports = {
'@semantic-release/release-notes-generator',
'@semantic-release/exec',
'@semantic-release/github',
],
"initialVersion": "1.0.0"
]
};
5 changes: 2 additions & 3 deletions samples/release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ module.exports = {
'@semantic-release/release-notes-generator',
'@semantic-release/exec',
'@semantic-release/github',
],
"initialVersion": "1.0.0"
};
]
};