Skip to content

Commit 52d2570

Browse files
authored
Merge pull request #10 from ostis-ai/release/0.6.1
Release 0.6.1
2 parents 4e3a438 + 554bcfb commit 52d2570

File tree

3 files changed

+52
-3
lines changed

3 files changed

+52
-3
lines changed

.github/workflows/release.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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 }}'

docs/changelog.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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

scripts/prepare.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ clone_project()
4747

4848
stage "Clone projects"
4949

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
5353

5454
stage "Prepare projects"
5555

0 commit comments

Comments
 (0)