-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of https://github.com/4urcloud/Kexa into dev
- Loading branch information
Showing
17 changed files
with
332 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,8 +30,43 @@ jobs: | |
- name: Run tests | ||
run: npm run test | ||
|
||
- name: Git Version | ||
id: versioning | ||
uses: codacy/[email protected] | ||
with: | ||
release-branch: main | ||
dev-branch: dev | ||
log-paths: Kexa/ | ||
minor-identifier: 'feat:' | ||
major-identifier: 'break:' | ||
|
||
- name: Set up version in file | ||
run: echo "${{ steps.versioning.outputs.version }}" > VERSION | ||
|
||
- name: Run extract Addon | ||
run: npm run update | ||
|
||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/changed-files@v39 | ||
|
||
- name: List all changed files | ||
run: | | ||
echo "## ${{ steps.versioning.outputs.version }}" >> CHANGELOG.md | ||
echo "" >> CHANGELOG.md | ||
echo "### Files added: ${{steps.changed-files.outputs.added_files_count}}" >> CHANGELOG.md | ||
echo "" >> CHANGELOG.md | ||
for file in ${{ steps.changed-files.outputs.added_files }}; do | ||
echo "$file was added" >> CHANGELOG.md | ||
echo "" >> CHANGELOG.md | ||
done | ||
echo "### Files changed: ${{steps.changed-files.outputs.all_changed_and_modified_files_count}}" >> CHANGELOG.md | ||
echo "" >> CHANGELOG.md | ||
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do | ||
echo "$file was changed" >> CHANGELOG.md | ||
echo "" >> CHANGELOG.md | ||
done | ||
echo "" >> CHANGELOG.md | ||
- name: commit changes | ||
uses: EndBug/add-and-commit@v4 | ||
|
@@ -44,16 +79,6 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
|
||
- name: Git Version | ||
id: versionning | ||
uses: codacy/[email protected] | ||
with: | ||
release-branch: main | ||
dev-branch: dev | ||
log-paths: Kexa/ | ||
minor-identifier: 'feat:' | ||
major-identifier: 'break:' | ||
|
||
- name: Login to Docker Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
|
@@ -67,10 +92,10 @@ jobs: | |
context: ./ | ||
push: true | ||
tags: | | ||
${{ secrets.DOCKER_REGISTRY_NAME}}/innovtech/kexa:${{ steps.versionning.outputs.version }} | ||
${{ secrets.DOCKER_REGISTRY_NAME}}/innovtech/kexa:${{ steps.versioning.outputs.version }} | ||
${{ secrets.DOCKER_REGISTRY_NAME}}/innovtech/kexa:latest | ||
- name: Release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
tag: "${{ steps.versionning.outputs.version }}" | ||
tag: "${{ steps.versioning.outputs.version }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# CHANGELOG | ||
|
||
## 1.8.0-SNAPSHOT.51.f9fa354 | ||
|
||
### Files added: 2 | ||
|
||
CHANGELOG.md was added | ||
|
||
VERSION was added | ||
|
||
### Files changed: 5 | ||
|
||
CHANGELOG.md was changed | ||
|
||
VERSION was changed | ||
|
||
.github/workflows/ci.yml was changed | ||
|
||
Kexa/services/updateCapability.service.ts was changed | ||
|
||
package.json was changed | ||
|
||
|
||
## 1.8.0-SNAPSHOT.53.56373d8 | ||
|
||
### Files added: 0 | ||
|
||
### Files changed: 10 | ||
|
||
Kexa/rules/Deployement.yaml was changed | ||
|
||
Kexa/rules/Economy.yaml was changed | ||
|
||
Kexa/rules/HTTPRules.yaml was changed | ||
|
||
Kexa/rules/OperationalExcellence.yaml was changed | ||
|
||
Kexa/rules/Performance.yaml was changed | ||
|
||
Kexa/rules/PostDeployement.yaml was changed | ||
|
||
Kexa/rules/PreDeployement.yaml was changed | ||
|
||
Kexa/rules/Security.yaml was changed | ||
|
||
Kexa/rules/driveRules.yaml was changed | ||
|
||
Kexa/rules/rules-testing.yaml was changed | ||
|
||
|
||
## 1.8.0-SNAPSHOT.55.c3f6d1b | ||
|
||
### Files added: 0 | ||
|
||
### Files changed: 1 | ||
|
||
README.md was changed | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.