File tree Expand file tree Collapse file tree 3 files changed +52
-3
lines changed Expand file tree Collapse file tree 3 files changed +52
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - " *.*.*"
7
+
8
+ # Allows you to run this workflow manually from the Actions tab
9
+ workflow_dispatch :
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - name : Checkout
16
+ uses : actions/checkout@v2
17
+
18
+ - name : Read changlog
19
+ id : changelog_reader
20
+ uses : mindsers/changelog-reader-action@v2
21
+ with :
22
+ version : ${{ github.ref_name }}
23
+ path : docs/changelog.md
24
+
25
+ - name : Release
26
+ uses : softprops/action-gh-release@v1
27
+ with :
28
+ body : ${{ steps.changelog_reader.outputs.changes }}
29
+ name : ' v${{ github.ref_name }}'
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
+
7
+ ## [ Unreleased]
8
+
9
+ ## [ 0.6.1] - 28.04.2022
10
+ ### Added
11
+ - Add sc-machine gitmodules initiation
12
+
13
+ ### Changed
14
+ - Set modules links to ostis-ai repos
15
+ - Set sc-machine to 0.6.1
16
+ - Set sc-web to 0.6.1
17
+ - Set ims.ostis.kb to 0.2.1
18
+
19
+ ### Removed
20
+ - Remove yarn web interface build
Original file line number Diff line number Diff line change @@ -47,9 +47,9 @@ clone_project()
47
47
48
48
stage " Clone projects"
49
49
50
- clone_project https://github.com/ostis-ai/sc-machine.git sc-machine main
51
- clone_project https://github.com/ostis-ai/sc-web.git sc-web main
52
- clone_project https://github.com/ostis-ai/ims.ostis.kb.git ims.ostis.kb main
50
+ clone_project https://github.com/ostis-ai/sc-machine.git sc-machine 0.6.1
51
+ clone_project https://github.com/ostis-ai/sc-web.git sc-web 0.6.1
52
+ clone_project https://github.com/ostis-ai/ims.ostis.kb.git ims.ostis.kb 0.2.1
53
53
54
54
stage " Prepare projects"
55
55
You can’t perform that action at this time.
0 commit comments