mirror of
https://github.com/dadosfera/maestro.git
synced 2026-09-04 05:34:48 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
99b7d9a8d7 | ||
|
|
688fe81500 | ||
|
|
f785253ece | ||
|
|
afb4d957bc | ||
|
|
b65acd208c | ||
|
|
6118fa207c | ||
|
|
747c34f3d8 | ||
|
|
899c8cb050 | ||
|
|
d1ea8eaccc | ||
|
|
7261080054 | ||
|
|
dbe65f859f | ||
|
|
54f15b88c9 | ||
|
|
b86849aef4 | ||
|
|
44fbb3ffa9 | ||
|
|
4e92080790 | ||
|
|
b8d4fb3799 | ||
|
|
0b1ff0f130 | ||
|
|
4499ec941a |
@@ -19,8 +19,7 @@ jobs:
|
||||
with:
|
||||
semantic_version: 16
|
||||
extra_plugins: |
|
||||
@semantic-release/git
|
||||
@semantic-release/npm
|
||||
@saithodev/semantic-release-backmerge
|
||||
conventional-changelog-eslint
|
||||
branches: |
|
||||
[
|
||||
@@ -38,27 +37,33 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Update Pip
|
||||
if: steps.semantic.outputs.new_release_published == 'true'
|
||||
run: |
|
||||
python3 -m pip install --upgrade pip
|
||||
|
||||
- name: Install Docker Compose
|
||||
if: steps.semantic.outputs.new_release_published == 'true'
|
||||
run: |
|
||||
python3 -m pip install docker-compose --upgrade
|
||||
|
||||
- name: Install AWS CLI
|
||||
if: steps.semantic.outputs.new_release_published == 'true'
|
||||
run: |
|
||||
python3 -m pip install awscli --upgrade
|
||||
|
||||
- name: Install AWS Elastic Beanstalk CLI
|
||||
if: steps.semantic.outputs.new_release_published == 'true'
|
||||
run: |
|
||||
python3 -m pip install awsebcli --upgrade
|
||||
|
||||
- name: Configure AWS Region
|
||||
if: steps.semantic.outputs.new_release_published == 'true'
|
||||
uses: aws-actions/configure-aws-credentials@v1
|
||||
with:
|
||||
aws-region: us-east-1
|
||||
|
||||
- name: Extract Environment
|
||||
if: steps.semantic.outputs.new_release_published == 'true'
|
||||
shell: bash
|
||||
run: |
|
||||
if [ ${GITHUB_REF} == "refs/heads/main" ]; then
|
||||
@@ -69,6 +74,7 @@ jobs:
|
||||
id: extract_environment
|
||||
|
||||
- name: Login to AWS ECR
|
||||
if: steps.semantic.outputs.new_release_published == 'true'
|
||||
id: login_ecr
|
||||
uses: aws-actions/amazon-ecr-login@v1
|
||||
|
||||
|
||||
+10
-10
@@ -10,12 +10,12 @@
|
||||
{ "tag": "Update", "release": "minor" },
|
||||
{ "tag": "Upgrade", "release": "minor" },
|
||||
{ "tag": "Breaking", "release": "major" },
|
||||
{ "tag": "Docs", "release": "minor" },
|
||||
{ "tag": "Docs", "release": "patch" },
|
||||
{ "tag": "Chore", "release": "minor" },
|
||||
{ "tag": "Build", "release": "minor" },
|
||||
{ "tag": "Build", "release": "patch" },
|
||||
{ "tag": "Refactor", "release": "minor" },
|
||||
{ "tag": "Test", "release": "minor" },
|
||||
{ "tag": "CI", "release": "minor" },
|
||||
{ "tag": "Test", "release": "patch" },
|
||||
{ "tag": "CI", "release": "patch" },
|
||||
{ "tag": "Perf", "release": "minor" }
|
||||
]
|
||||
}
|
||||
@@ -26,13 +26,13 @@
|
||||
"preset": "eslint"
|
||||
}
|
||||
],
|
||||
"@semantic-release/npm",
|
||||
"@semantic-release/github",
|
||||
[
|
||||
"@semantic-release/git", {
|
||||
"assets": ["package.json"],
|
||||
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
||||
"@saithodev/semantic-release-backmerge",
|
||||
{
|
||||
"branches": ["alpha", "beta"],
|
||||
"backmergeStrategy": "merge"
|
||||
}
|
||||
]
|
||||
],
|
||||
"@semantic-release/github"
|
||||
]
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "grpc-server-and-client-nestjs-micro-pattern",
|
||||
"version": "1.0.0",
|
||||
"version": "0.0.0",
|
||||
"description": "",
|
||||
"author": "",
|
||||
"private": true,
|
||||
|
||||
Reference in New Issue
Block a user