Skip to content
Snippets Groups Projects
Verified Commit d6e6960e authored by Thomas Lambert's avatar Thomas Lambert :helicopter:
Browse files

ci: add auto release


Signed-off-by: Thomas Lambert's avatarThomas Lambert <t.lambert@uliege.be>
parent dc94ab8d
No related branches found
No related tags found
No related merge requests found
Pipeline #10291 failed
......@@ -8,6 +8,7 @@ default:
# Columns of the pipeline
stages:
- static analysis
- release
# Static code analysis job via MISS_HIT
style_check:
......@@ -24,3 +25,18 @@ lint_check:
stage: static analysis
script:
- mh_lint .
# https://docs.gitlab.com/ee/user/project/releases/release_cicd_examples.html
release_job:
stage: release
image: registry.gitlab.com/gitlab-org/release-cli:latest
rules:
- if: $CI_COMMIT_TAG # Run this job when a tag is created
only:
- master # Only if tag is on main
script:
- echo "running release_job"
release:
tag_name: '$CI_COMMIT_TAG'
name: 'Release $CI_COMMIT_TAG'
description: 'Automatic release for $CI_COMMIT_TAG.'
......@@ -9,17 +9,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Changed
### Deprecated
### Removed
### Fixed
## [4.1.0] - 2022-11-25
### Added
- **Polar**: add polypolar method
- **Airfoil** class
- **CI/CD**: automatic release
### Changed
- **Polar**: rename _analyse_ method in _analyze_ to use US spelling everywhere.
### Deprecated
### Removed
### Fixed
- **formatairfoilcoord**: fix issue with autosave
......@@ -118,8 +127,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release
[Unreleased]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/v4.0.0...master
[4.0.0]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/v3.0.0...v4.0.0
[Unreleased]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/v4.1.0...master
[4.1.0]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/4.0.0...v4.1.0
[4.0.0]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/3.0.0...4.0.0
[3.0.0]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/v2.0.1...v3.0.0
[2.0.1]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/v2.0.0...v2.0.1
[2.0.0]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/v1.2.0...v2.0.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment