Skip to content

Commit 7f1bea7

Browse files
author
Sergio García Prado
committed
Merge remote-tracking branch 'origin/0.4.x'
2 parents 1ec098e + 03703cf commit 7f1bea7

7 files changed

+12
-13
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Publish: Documentation"
33
on:
44
push:
55
branches:
6-
- releases
6+
- main
77

88
jobs:
99
deploy:

.github/workflows/minos-microservice-aggregate-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Publish: minos-microservice-aggregate"
33
on:
44
push:
55
branches:
6-
- releases
6+
- '*.*.x'
77
paths:
88
- 'packages/core/minos-microservice-aggregate/**'
99

.github/workflows/minos-microservice-common-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Publish: minos-microservice-common"
33
on:
44
push:
55
branches:
6-
- releases
6+
- '*.*.x'
77
paths:
88
- 'packages/core/minos-microservice-common/**'
99

.github/workflows/minos-microservice-cqrs-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Publish: minos-microservice-cqrs"
33
on:
44
push:
55
branches:
6-
- releases
6+
- '*.*.x'
77
paths:
88
- 'packages/core/minos-microservice-cqrs/**'
99

.github/workflows/minos-microservice-networks-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Publish: minos-microservice-networks"
33
on:
44
push:
55
branches:
6-
- releases
6+
- '*.*.x'
77
paths:
88
- 'packages/core/minos-microservice-networks/**'
99

.github/workflows/minos-microservice-saga-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Publish: minos-microservice-saga"
33
on:
44
push:
55
branches:
6-
- releases
6+
- '*.*.x'
77
paths:
88
- 'packages/core/minos-microservice-saga/**'
99

.github/workflows/release.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: "Release"
22

33
on:
4-
release:
5-
types: [ created ]
4+
push:
5+
branches:
6+
- '*.*.x'
67

78
jobs:
89
deploy:
@@ -13,9 +14,7 @@ jobs:
1314
- name: Check out repository code
1415
uses: actions/checkout@v2
1516

16-
- name: Merge staging -> releases
17-
uses: devmasx/merge-branch@master
17+
- name: Release Templates
18+
uses: softprops/action-gh-release@v1
1819
with:
19-
type: now
20-
target_branch: releases
21-
github_token: ${{ github.token }}
20+
draft: true

0 commit comments

Comments
 (0)