Skip to content

Commit bd31b6e

Browse files
Cicd (#8)
* fix(kuoki): update ci to ignore HUSKY * ci(kuoki): update github actions * ci(kuoki): update github cd triggers * ci(kuoki): update actions to avoid repeats * ci(kuoki): add skip ci to bot pushes * ci(kuoki): remove uneeded push stage * fix(kuoki): update cd scripts
1 parent 34cb183 commit bd31b6e

File tree

9 files changed

+20
-16
lines changed

9 files changed

+20
-16
lines changed

.github/workflows/anymap-cicd.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Anymap Continuous Integration and Deployment
1+
name: Anymap Continuous Deployment
22

33
on:
44
push:
@@ -21,18 +21,21 @@ jobs:
2121
runs-on: ubuntu-latest
2222
name: Generate Reports and Analyze in SonarCloud
2323
steps:
24+
- uses: actions/checkout@v3
2425
- uses: ./.github/actions/sonar
2526

2627
deploy_package:
2728
needs: sonarcloud
2829
runs-on: ubuntu-latest
2930
name: Generate and Deploy Package
3031
steps:
32+
- uses: actions/checkout@v3
3133
- uses: ./.github/actions/deploy-package
3234

3335
deploy_docs:
3436
needs: sonarcloud
3537
runs-on: ubuntu-latest
3638
name: Generate and Deploy Documentation
3739
steps:
40+
- uses: actions/checkout@v3
3841
- uses: ./.github/actions/deploy-docs

.github/workflows/environment-angular-cicd.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Environment Angular Continuous Integration and Deployment
1+
name: Environment Angular Continuous Deployment
22

33
on:
44
push:
@@ -21,18 +21,21 @@ jobs:
2121
runs-on: ubuntu-latest
2222
name: Generate Reports and Analyze in SonarCloud
2323
steps:
24+
- uses: actions/checkout@v3
2425
- uses: ./.github/actions/sonar
2526

2627
deploy_package:
2728
needs: sonarcloud
2829
runs-on: ubuntu-latest
2930
name: Generate and Deploy Package
3031
steps:
32+
- uses: actions/checkout@v3
3133
- uses: ./.github/actions/deploy-package
3234

3335
deploy_docs:
3436
needs: sonarcloud
3537
runs-on: ubuntu-latest
3638
name: Generate and Deploy Documentation
3739
steps:
40+
- uses: actions/checkout@v3
3841
- uses: ./.github/actions/deploy-docs

.github/workflows/environment-cicd.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Environment Continuous Integration and Deployment
1+
name: Environment Continuous Deployment
22

33
on:
44
push:
@@ -21,18 +21,21 @@ jobs:
2121
runs-on: ubuntu-latest
2222
name: Generate Reports and Analyze in SonarCloud
2323
steps:
24+
- uses: actions/checkout@v3
2425
- uses: ./.github/actions/sonar
2526

2627
deploy_package:
2728
needs: sonarcloud
2829
runs-on: ubuntu-latest
2930
name: Generate and Deploy Package
3031
steps:
32+
- uses: actions/checkout@v3
3133
- uses: ./.github/actions/deploy-package
3234

3335
deploy_docs:
3436
needs: sonarcloud
3537
runs-on: ubuntu-latest
3638
name: Generate and Deploy Documentation
3739
steps:
40+
- uses: actions/checkout@v3
3841
- uses: ./.github/actions/deploy-docs

.github/workflows/environment-race-condition-cicd.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Race Condition Continuous Integration and Deployment
1+
name: Race Condition Continuous Deployment
22

33
on:
44
push:
@@ -21,18 +21,21 @@ jobs:
2121
runs-on: ubuntu-latest
2222
name: Generate Reports and Analyze in SonarCloud
2323
steps:
24+
- uses: actions/checkout@v3
2425
- uses: ./.github/actions/sonar
2526

2627
deploy_package:
2728
needs: sonarcloud
2829
runs-on: ubuntu-latest
2930
name: Generate and Deploy Package
3031
steps:
32+
- uses: actions/checkout@v3
3133
- uses: ./.github/actions/deploy-package
3234

3335
deploy_docs:
3436
needs: sonarcloud
3537
runs-on: ubuntu-latest
3638
name: Generate and Deploy Documentation
3739
steps:
40+
- uses: actions/checkout@v3
3841
- uses: ./.github/actions/deploy-docs

.github/workflows/kuoki-ci.yml

-8
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,3 @@ jobs:
6363

6464
- name: Version Affected
6565
run: npx nx affected --target=version --parallel=1
66-
67-
- name: Push changes
68-
uses: ad-m/github-push-action@master
69-
with:
70-
github_token: ${{ env.GITHUB_TOKEN }}
71-
branch: ${{ github.ref }}
72-
force: true
73-
tags: true

packages/anymap/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"version": {
4848
"executor": "@jscutlery/semver:version",
4949
"options": {
50-
"commitMessageFormat": "chore(${projectName}): release version ${version}",
50+
"commitMessageFormat": "chore(${projectName}): release version ${version} [skip ci]",
5151
"tagPrefix": "${projectName}-v",
5252
"noVerify": true,
5353
"push": true,

packages/environment-angular/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"version": {
5151
"executor": "@jscutlery/semver:version",
5252
"options": {
53-
"commitMessageFormat": "chore(${projectName}): release version ${version}",
53+
"commitMessageFormat": "chore(${projectName}): release version ${version} [skip ci]",
5454
"tagPrefix": "${projectName}-v",
5555
"noVerify": true,
5656
"push": true,

packages/environment/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"version": {
6262
"executor": "@jscutlery/semver:version",
6363
"options": {
64-
"commitMessageFormat": "chore(${projectName}): release version ${version}",
64+
"commitMessageFormat": "chore(${projectName}): release version ${version} [skip ci]",
6565
"tagPrefix": "${projectName}-v",
6666
"noVerify": true,
6767
"push": true,

packages/race-condition/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"version": {
6464
"executor": "@jscutlery/semver:version",
6565
"options": {
66-
"commitMessageFormat": "chore(${projectName}): release version ${version}",
66+
"commitMessageFormat": "chore(${projectName}): release version ${version} [skip ci]",
6767
"tagPrefix": "${projectName}-v",
6868
"noVerify": true,
6969
"push": true,

0 commit comments

Comments
 (0)